Re: 1.8.2 srfi-19 warns about current-time

2007-10-10 Thread Ludovic Courtès
Hi, Gregory Marton <[EMAIL PROTECTED]> writes: > Can I help? I mean, presuming that the sentence above, or some > extension, is reasonable documentation? I get a sense that there is a > reluctance to document things because that entails a commitment to > supporting them in the future -- is that

Re: 1.8.2 srfi-19 warns about current-time

2007-10-09 Thread Gregory Marton
module-replace! forces the list of symbols in its second argument to be put into the :replace list? (could not find documentation) Correct. It's not documented (yet). Can I help? I mean, presuming that the sentence above, or some extension, is reasonable documentation? I get a sense that

Re: 1.8.2 srfi-19 warns about current-time

2007-10-09 Thread Ludovic Courtès
Hi, Gregory Marton <[EMAIL PROTECTED]> writes: > On Mon, 8 Oct 2007, Ludovic Courtès wrote: >> You can insert the following line at the beginning of your program: >> >> (default-duplicate-binding-handler 'last) > > This affects all bindings, not just the ones I no longer want to be > warned abo

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 ___

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 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
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-07 Thread Ludovic Courtès
Hi, Jon Wilson <[EMAIL PROTECTED]> writes: > SRFI-19, on the other hand, exports its own version of |current-time| > (see SRFI-19 Time > ) > which is not compatible with the core |current-time| function (se

Re: 1.8.2 srfi-19 warns about current-time

2007-10-07 Thread Jon Wilson
Hi Gregory, From the very page you linked: SRFI-19, on the other hand, exports its own version of |current-time| (see SRFI-19 Time ) which is not compatible with the core |current-time| function (see Tim