2008/10/14 Ludovic Courtès <[EMAIL PROTECTED]>:
> Hello,
>
> "Neil Jerram" <[EMAIL PROTECTED]> writes:
>
>> diff --git a/.gitignore b/.gitignore
>> index a122176..39c4b49 100644
>> --- a/.gitignore
>> +++ b/.gitignore
>> @@ -70,3 +70,4 @@ guile-readline/guile-readline-config.h
>> guile-readline/guile-readline-config.h.in
>> TAGS
>> guile-1.8.pc
>> +stack-limit-calibration.scm
>
> I'd put a leading `/', which means that it only pertains to this
> directory.
OK - but it should be libguile/stack-calibration.scm - done.
>> +SCM_DEFINE (scm_sys_get_stack_size, "%get-stack-size", 0, 0, 0,
>> + (),
>> + "Return the current thread's C stack size (in units of sizeof
>> (SCM_STACKITEM *)).")
>
> For the "end-user", it's really "in units of Scheme objects", no?
Yes, updated accordingly.
> "Neil Jerram" <[EMAIL PROTECTED]> writes:
>
>> One update to this below. It isn't actually necessary or helpful, for
>> this case, to pull in the GOOPS interface to evaluator traps.
>
> Even better! :-)
>
> I'm happy with this new version, please go ahead!
Thanks. Will be committed very shortly, after some test builds.
Neil