Re: [racket] SRFI 19 string->date: Error reading dates

2015-02-02 Thread Alexis King
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

Re: [racket] SRFI 19 string->date: Error reading dates

2015-02-02 Thread Gustavo Massaccesi
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..

Re: [racket] SRFI 19 string->date: Error reading dates

2015-01-31 Thread Alexis King
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

[racket] SRFI 19 string->date: Error reading dates

2015-01-31 Thread Jordan Johnson
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