diff options
author | Andy Wingo <wingo@pobox.com> | 2010-09-24 18:09:47 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2010-09-24 18:11:27 +0200 |
commit | 3b494f511ad6966acfa5bad751e27b152254fad5 (patch) | |
tree | 79f15b89265f491c18d2ad395c8c06c83181fc6c /libguile/eval.c | |
parent | a1652dec108b7b500146a57a99cd8aeb90e98ea9 (diff) | |
download | guile-3b494f511ad6966acfa5bad751e27b152254fad5.tar.gz |
remove eval-options
* libguile/eval.c:
* libguile/private-options.h (scm_eval_opts, scm_eval_options_interface)
(SCM_EVAL_STACK): Remove these private interfaces.
* module/ice-9/boot-9.scm (eval-options, eval-enable, eval-disable)
(eval-set!): Remove these procedures.
* doc/ref/api-evaluation.texi:
* doc/ref/api-options.texi: Remove references to eval options.
Diffstat (limited to 'libguile/eval.c')
-rw-r--r-- | libguile/eval.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/libguile/eval.c b/libguile/eval.c index 8d11570fc..28f660379 100644 --- a/libguile/eval.c +++ b/libguile/eval.c @@ -435,11 +435,6 @@ eval (SCM x, SCM env) } } -scm_t_option scm_eval_opts[] = { - { SCM_OPTION_INTEGER, "stack", 22000, "Size of thread stacks (in machine words)." }, - { 0 } -}; - scm_t_option scm_debug_opts[] = { { SCM_OPTION_BOOLEAN, "cheap", 1, "*This option is now obsolete. Setting it has no effect." }, @@ -501,27 +496,6 @@ scm_t_option scm_evaluator_trap_table[] = { }; -SCM_DEFINE (scm_eval_options_interface, "eval-options-interface", 0, 1, 0, - (SCM setting), - "Option interface for the evaluation options. Instead of using\n" - "this procedure directly, use the procedures @code{eval-enable},\n" - "@code{eval-disable}, @code{eval-set!} and @code{eval-options}.") -#define FUNC_NAME s_scm_eval_options_interface -{ - SCM ans; - - scm_dynwind_begin (0); - scm_dynwind_critical_section (SCM_BOOL_F); - ans = scm_options (setting, - scm_eval_opts, - FUNC_NAME); - scm_dynwind_end (); - - return ans; -} -#undef FUNC_NAME - - SCM_DEFINE (scm_evaluator_traps, "evaluator-traps-interface", 0, 1, 0, (SCM setting), "Option interface for the evaluator trap options.") @@ -1139,8 +1113,6 @@ scm_init_eval () scm_init_opts (scm_evaluator_traps, scm_evaluator_trap_table); - scm_init_opts (scm_eval_options_interface, - scm_eval_opts); f_apply = scm_c_define_gsubr ("apply", 2, 0, 1, scm_apply); |