Re: Accessing multiple values from C

2012-01-16 Thread Ludovic Courtès
Hi Julian, Julian Graham skribis: >>> Not yet.  You interested in adding scm_c_value_ref (SCM, size_t) to the >>> API, and documentation to api-control.texi?  If you do it soon, it >>> will make it into 2.0.4. >> >> Sure.  Gimme a day or so and I'll have something for review. > > Find attached a

Re: propagating a coding setting across source files

2012-01-16 Thread Ludovic Courtès
Hi, Mike Gran skribis: > I tried to dig through the logic of this the other day, and I'm not > sure that your suggestion can work.  If "load" ends up calling > "primitive-load", then any file without a "coding:" line is UTF-8. > %default-port-encoding doesn't enter in to it. Right. So what Sve

Re: Guile support in GNU make

2012-01-16 Thread Ludovic Courtès
Hi Paul, And thanks for the great news! :-) Paul Smith skribis: > On Sun, 2012-01-15 at 09:51 +0100, Thien-Thi Nguyen wrote: [...] >> - The ‘#t => t’ distinguishes the symbol t from others, which feels wrong. >> I suggest #t => ""; #f => error. > > Hm. The problem with this is that we can'

Re: Accessing multiple values from C

2012-01-16 Thread Andy Wingo
On Sun 15 Jan 2012 22:47, l...@gnu.org (Ludovic Courtès) writes: Not yet.  You interested in adding scm_c_value_ref (SCM, size_t) to the API, and documentation to api-control.texi?  If you do it soon, it will make it into 2.0.4. >>> >>> Sure.  Gimme a day or so and I'll have somethi

Re: propagating a coding setting across source files

2012-01-16 Thread Andy Wingo
On Sun 15 Jan 2012 22:51, l...@gnu.org (Ludovic Courtès) writes: > Mike Gran skribis: > >> I tried to dig through the logic of this the other day, and I'm not >> sure that your suggestion can work.  If "load" ends up calling >> "primitive-load", then any file without a "coding:" line is UTF-8. >>

Re: Guile support in GNU make

2012-01-16 Thread Paul Smith
On Sun, 2012-01-15 at 23:02 +0100, Ludovic Courts wrote: > And thanks for the great news! :-) I promoted the feature to GNU make CVS (I know, still CVS!!) on Savannah. I hope to generate a test dist file sometime this week. I'll email when it's available if people want to take a look. > Paul S

Re: salutations and web scraping

2012-01-16 Thread Catonano
Andy, Il giorno 10 gennaio 2012 22:46, Andy Wingo ha scritto: > Hi Catonano, > > On Fri 30 Dec 2011 23:58, Catonano writes: > > > I´m a beginner, I never wrote a single line of LISP or Scheme in my life > > and I´m here for asking for directions and suggestions. > > Welcome! :-) > thank you so

Re: propagating a coding setting across source files

2012-01-16 Thread Ludovic Courtès
Hi! Andy Wingo skribis: > On Sun 15 Jan 2012 22:51, l...@gnu.org (Ludovic Courtès) writes: > >> Mike Gran skribis: >> >>> I tried to dig through the logic of this the other day, and I'm not >>> sure that your suggestion can work.  If "load" ends up calling >>> "primitive-load", then any file wi

Mixing syntax-rule and indentifier-syntax

2012-01-16 Thread Tobias Brandt
Hi, is it possible to define a macro that does one thing when it's in operator position and another when it's not? I want to define a macro `with-vectors` that transforms this: (with-vectors (v) (v 0) (set! (v 0) 'foo) (some-procedure v)) into this: (begin (vector-ref v 0)