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
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
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'
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
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.
>>
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
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
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
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)