Re: 1.8.2 srfi-19 warns about current-time

2007-10-08 Thread Gregory Marton
Thanks Jon, Ludovic, I indeed hadn't noticed that it was intentional, but I'm in agreement with Ludovic. I'm concerned that my customer shouldn't be confused and worried by a warning, and I see no way to override the warning myself. This is a bit of overkill, but I thought it might work: (w

Re: 1.8.2 srfi-19 warns about current-time

2007-10-08 Thread Ludovic Courtès
Hi, Gregory Marton <[EMAIL PROTECTED]> writes: > I indeed hadn't noticed that it was intentional, but I'm in agreement > with Ludovic. I'm concerned that my customer shouldn't be confused > and worried by a warning, and I see no way to override the warning > myself. You can insert the following

Re: 1.8.2 srfi-19 warns about current-time

2007-10-08 Thread Gregory Marton
Thank you! On Mon, 8 Oct 2007, Ludovic Courtès wrote: Hi, Gregory Marton <[EMAIL PROTECTED]> writes: I indeed hadn't noticed that it was intentional, but I'm in agreement with Ludovic. I'm concerned that my customer shouldn't be confused and worried by a warning, and I see no way to overrid

Re: 1.8.2 srfi-19 warns about current-time

2007-10-08 Thread Jon Wilson
Hi Greg, One more option is to rename all of the symbols coming in from srfi-19. I've used this myself. (use-modules ((srfi srfi-19) :renamer (symbol-prefix-proc 'tm:))) This prefixes every symbol exported by srfi-19 with tm:, so current-time becomes tm:current-time etc. Regards, Jon ___