FWIW, I can reproduce that bug in DrRacket 6.1.1, but I can’t reproduce it in a
snapshot build (currently 6.1.1.8), so it might have already been fixed.
> On Feb 2, 2015, at 11:31, Gustavo Massaccesi wrote:
>
> The crashes are unrelated to the srfi/19, you should fill another bug
> report for t
The crashes are unrelated to the srfi/19, you should fill another bug
report for that :).
A simpler example (inspired by the reply of Alexis King) is:
#lang racket
(+ (values) 777)
--
Error:
result arity mismatch;
expected number of values not received
expected: 1
received: 0
values..
Looks like a bug to me. The error is happening inside srfi-lite-lib, and as far
as I can tell, it’s due to a rather strange line of code on line 1488 of
srfi/19/time.rkt:
(do-nothing (lambda (val object) (values)))
This function returns zero values, causing the arity error. As far as I can
tel
Hi all,
I’m running into this problem with string->date in srfi/19:
;;; begin Interactions
> (require srfi/19)
> (string->date "Sun, 02 Feb 2015" "~a, ~d ~b ~Y”)
result arity mismatch;
expected number of values not received
expected: 1
received: 0
values...:
;;; end Interactions
I’m assuming
4 matches
Mail list logo