Re: fmatch

2010-05-24 Thread Ludovic Courtès
Hello! stefan stefan.ta...@spray.se writes: On Saturday 22 May 2010 11:03:12 pm Ludovic Courtès wrote: Hi! stefan stefan.ta...@spray.se writes: Shall we say that we use the slightly modified version of (ice-9 match) that ypu dug up for now! Hmm, yes? Please send an actual patch

Re: Portability fixes for win32 cross compiling

2010-05-24 Thread Volker Grabsch
Andy Wingo wi...@pobox.com schrieb: Your patches look good, except for one. On Wed 21 Apr 2010 22:22, Volker Grabsch v...@notjusthosting.com writes: --- a/libguile/bdw-gc.h +++ b/libguile/bdw-gc.h @@ -34,6 +34,8 @@ #endif +#define GC_NO_THREAD_REDIRECTS + #include

Custom printers for SRFI-9 records

2010-05-24 Thread No Itisnt
One thing I'm missing, and maybe I just didn't see it, is a way to define custom printers for SRFI-9 records. (define-syntax define-record-printer (syntax-rules () ((_ name thunk) (struct-set! name vtable-index-printer thunk Does something like that already exist? If not, 1) do