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 /module | |
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 'module')
-rw-r--r-- | module/ice-9/boot-9.scm | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/module/ice-9/boot-9.scm b/module/ice-9/boot-9.scm index 3f00afb9f..b58896834 100644 --- a/module/ice-9/boot-9.scm +++ b/module/ice-9/boot-9.scm @@ -2645,11 +2645,6 @@ module '(ice-9 q) '(make-q q-length))}." (options (append (options) (list 'opt val)))))))))) (define-option-interface - (eval-options-interface - (eval-options eval-enable eval-disable) - (eval-set!))) - -(define-option-interface (debug-options-interface (debug-options debug-enable debug-disable) (debug-set!))) |