diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2003-04-20 07:19:38 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2003-04-20 07:19:38 +0000 |
commit | d0f6ceb84f26b033d6f1ac8bbc2acf81efc29f22 (patch) | |
tree | 049594205b5cdd419c32f06af43ec6c3382ef85c /libguile/root.h | |
parent | 1ac61c2b50fa64ffc7d9aa4558aecceb9f980640 (diff) | |
download | guile-d0f6ceb84f26b033d6f1ac8bbc2acf81efc29f22.tar.gz |
* Removed uses of DEBUG_EXTENSIONS and DYNAMIC_LINKING to
fix compile errors with --disable-deprecated.
Diffstat (limited to 'libguile/root.h')
-rw-r--r-- | libguile/root.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libguile/root.h b/libguile/root.h index d3b623916..4c86bb45e 100644 --- a/libguile/root.h +++ b/libguile/root.h @@ -41,12 +41,8 @@ #define scm_protects scm_sys_protects[10] #define scm_properties_whash scm_sys_protects[11] #define scm_gc_registered_roots scm_sys_protects[12] -#ifdef DEBUG_EXTENSIONS #define scm_source_whash scm_sys_protects[13] #define SCM_NUM_PROTECTS 14 -#else -#define SCM_NUM_PROTECTS 13 -#endif SCM_API SCM scm_sys_protects[]; @@ -65,10 +61,9 @@ typedef struct scm_root_state SCM rootcont; SCM dynwinds; -#ifdef DEBUG_EXTENSIONS + /* It is very inefficient to have this variable in the root state. */ scm_t_debug_frame *last_debug_frame; -#endif SCM progargs; /* vestigial */ SCM exitval; /* vestigial */ |