diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2003-04-20 18:08:07 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2003-04-20 18:08:07 +0000 |
commit | a44a9715eb32e78b6cc0ed6908694ce43564ac02 (patch) | |
tree | 0869adcf3102324adcb8a485a473c7c568136887 /libguile/root.h | |
parent | 05a6b2d3cce4d0f70f760b41c3838489e82be667 (diff) | |
download | guile-a44a9715eb32e78b6cc0ed6908694ce43564ac02.tar.gz |
* eval.c, root.h (scm_undefineds, SCM_NUM_PROTECTS, undefineds,
scm_init_eval): Made scm_undefineds static in eval.c, renamed it
to undefineds and registered the object as a permanent object.
* eval.c, eval.h (scm_f_apply, scm_init_eval): Made scm_f_apply
static in eval.c, renamed it to f_apply and registered the object
as a permanent object.
Diffstat (limited to 'libguile/root.h')
-rw-r--r-- | libguile/root.h | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/libguile/root.h b/libguile/root.h index 4c86bb45e..6d0e5d38f 100644 --- a/libguile/root.h +++ b/libguile/root.h @@ -30,19 +30,18 @@ #define scm_flo0 scm_sys_protects[0] #define scm_listofnull scm_sys_protects[1] -#define scm_undefineds scm_sys_protects[2] -#define scm_nullvect scm_sys_protects[3] -#define scm_nullstr scm_sys_protects[4] -#define scm_keyword_obarray scm_sys_protects[5] -#define scm_stand_in_procs scm_sys_protects[6] -#define scm_object_whash scm_sys_protects[7] -#define scm_permobjs scm_sys_protects[8] -#define scm_asyncs scm_sys_protects[9] -#define scm_protects scm_sys_protects[10] -#define scm_properties_whash scm_sys_protects[11] -#define scm_gc_registered_roots scm_sys_protects[12] -#define scm_source_whash scm_sys_protects[13] -#define SCM_NUM_PROTECTS 14 +#define scm_nullvect scm_sys_protects[2] +#define scm_nullstr scm_sys_protects[3] +#define scm_keyword_obarray scm_sys_protects[4] +#define scm_stand_in_procs scm_sys_protects[5] +#define scm_object_whash scm_sys_protects[6] +#define scm_permobjs scm_sys_protects[7] +#define scm_asyncs scm_sys_protects[8] +#define scm_protects scm_sys_protects[9] +#define scm_properties_whash scm_sys_protects[10] +#define scm_gc_registered_roots scm_sys_protects[11] +#define scm_source_whash scm_sys_protects[12] +#define SCM_NUM_PROTECTS 13 SCM_API SCM scm_sys_protects[]; |