summaryrefslogtreecommitdiff
path: root/libguile/eval.h
diff options
context:
space:
mode:
authorHan-Wen Nienhuys <hanwen@lilypond.org>2007-01-22 15:14:40 +0000
committerHan-Wen Nienhuys <hanwen@lilypond.org>2007-01-22 15:14:40 +0000
commit22fc179acda911108e697446921306b5c9eb644b (patch)
tree564c8117218554f8d56bf809b9f475e36a62258e /libguile/eval.h
parentcb90e2cbe7cc0ea11c4f3f7310ee9f07f59ecd4a (diff)
downloadguile-22fc179acda911108e697446921306b5c9eb644b.tar.gz
* backtrace.c, debug.c, debug.h, deprecation.c, eq.c, eval.c
eval.h, gsubr.c, init.c, macros.c, print.c, print.h, read.c, read.h, stacks.c, symbols.c, throw.c: use private-options.h * private-options.h: new file: contain hardcoded option definitions.
Diffstat (limited to 'libguile/eval.h')
-rw-r--r--libguile/eval.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/libguile/eval.h b/libguile/eval.h
index dec9983c7..247cf164e 100644
--- a/libguile/eval.h
+++ b/libguile/eval.h
@@ -32,27 +32,6 @@
/* {Options}
*/
-SCM_API scm_t_option scm_eval_opts[];
-
-#define SCM_EVAL_STACK scm_eval_opts[0].val
-#define SCM_N_EVAL_OPTIONS 1
-
-SCM_API long scm_eval_stack;
-
-SCM_API scm_t_option scm_evaluator_trap_table[];
-
-SCM_API SCM scm_eval_options_interface (SCM setting);
-
-
-#define SCM_TRAPS_P scm_evaluator_trap_table[0].val
-#define SCM_ENTER_FRAME_P scm_evaluator_trap_table[1].val
-#define SCM_APPLY_FRAME_P scm_evaluator_trap_table[2].val
-#define SCM_EXIT_FRAME_P scm_evaluator_trap_table[3].val
-#define SCM_ENTER_FRAME_HDLR (SCM_PACK (scm_evaluator_trap_table[4].val))
-#define SCM_APPLY_FRAME_HDLR (SCM_PACK (scm_evaluator_trap_table[5].val))
-#define SCM_EXIT_FRAME_HDLR (SCM_PACK (scm_evaluator_trap_table[6].val))
-#define SCM_MEMOIZE_P scm_evaluator_trap_table[7].val
-#define SCM_MEMOIZE_HDLR (SCM_PACK (scm_evaluator_trap_table[8].val))