mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-14 15:40:19 +02:00
* Make SCM_DEBUG_CELL_ACCESSES=1 work with GUILE_DEBUG_FREELIST.
This commit is contained in:
parent
11bbab474a
commit
7c33806ae6
8 changed files with 60 additions and 26 deletions
|
@ -4083,6 +4083,11 @@ scm_init_eval ()
|
|||
scm_set_smob_mark (scm_tc16_promise, scm_markcdr);
|
||||
scm_set_smob_print (scm_tc16_promise, promise_print);
|
||||
|
||||
/* Dirk:Fixme:: make scm_undefineds local to eval.c: it's only used here. */
|
||||
scm_undefineds = scm_cons (SCM_UNDEFINED, SCM_EOL);
|
||||
SCM_SETCDR (scm_undefineds, scm_undefineds);
|
||||
scm_listofnull = scm_cons (SCM_EOL, SCM_EOL);
|
||||
|
||||
scm_f_apply = scm_make_subr ("apply", scm_tc7_lsubr_2, scm_apply);
|
||||
|
||||
scm_lisp_nil = scm_sysintern ("nil", SCM_UNDEFINED);
|
||||
|
@ -4092,9 +4097,6 @@ scm_init_eval ()
|
|||
SCM_SETCDR (scm_lisp_t, SCM_CAR (scm_lisp_t));
|
||||
scm_lisp_t = SCM_CAR (scm_lisp_t);
|
||||
|
||||
/* acros */
|
||||
/* end of acros */
|
||||
|
||||
#if SCM_DEBUG_DEPRECATED == 0
|
||||
scm_top_level_lookup_closure_var =
|
||||
scm_sysintern ("*top-level-lookup-closure*", scm_make_fluid ());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue