summaryrefslogtreecommitdiff
path: root/libguile/eval.h
diff options
context:
space:
mode:
authorDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2003-04-20 07:19:38 +0000
committerDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2003-04-20 07:19:38 +0000
commitd0f6ceb84f26b033d6f1ac8bbc2acf81efc29f22 (patch)
tree049594205b5cdd419c32f06af43ec6c3382ef85c /libguile/eval.h
parent1ac61c2b50fa64ffc7d9aa4558aecceb9f980640 (diff)
downloadguile-d0f6ceb84f26b033d6f1ac8bbc2acf81efc29f22.tar.gz
* Removed uses of DEBUG_EXTENSIONS and DYNAMIC_LINKING to
fix compile errors with --disable-deprecated.
Diffstat (limited to 'libguile/eval.h')
-rw-r--r--libguile/eval.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/libguile/eval.h b/libguile/eval.h
index 5f99365c4..3eb17fdee 100644
--- a/libguile/eval.h
+++ b/libguile/eval.h
@@ -105,7 +105,6 @@ SCM_API scm_t_bits scm_tc16_promise;
#define SCM_EVALIM(x, env) (SCM_ILOCP (x) \
? *scm_ilookup ((x), env) \
: SCM_EVALIM2(x))
-#ifdef DEBUG_EXTENSIONS
#define SCM_XEVAL(x, env) (SCM_IMP (x) \
? SCM_EVALIM2(x) \
: (*scm_ceval_ptr) ((x), (env)))
@@ -114,12 +113,6 @@ SCM_API scm_t_bits scm_tc16_promise;
: (SCM_SYMBOLP (SCM_CAR (x)) \
? *scm_lookupcar (x, env, 1) \
: (*scm_ceval_ptr) (SCM_CAR (x), env)))
-#else
-#define SCM_XEVAL(x, env) (SCM_IMP (x) \
- ? SCM_EVALIM2(x) \
- : scm_ceval ((x), (env)))
-#define SCM_XEVALCAR(x, env) EVALCAR (x, env)
-#endif /* DEBUG_EXTENSIONS */
typedef SCM (*scm_t_trampoline_0) (SCM proc);
typedef SCM (*scm_t_trampoline_1) (SCM proc, SCM arg1);