Hi, Bruce Korb <[email protected]> writes:
> There also seems to be a weird problem when providing my own "scm_listofnull". > By replacing "scm_listofnull" with "ag_scm_listofnull" and initializing it: > SCM ag_scm_listofnull = scm_list_1 (SCM_EOL); In Guile < 1.9.3, you have to scm_gc_protect_object this value (info "(guile) Garbage Collection Functions"). Thanks, Ludo’.
