diff options
Diffstat (limited to 'doc/ref')
-rw-r--r-- | doc/ref/api-evaluation.texi | 34 | ||||
-rw-r--r-- | doc/ref/api-options.texi | 13 |
2 files changed, 1 insertions, 46 deletions
diff --git a/doc/ref/api-evaluation.texi b/doc/ref/api-evaluation.texi index 2e7d9dd0d..d9aa397c4 100644 --- a/doc/ref/api-evaluation.texi +++ b/doc/ref/api-evaluation.texi @@ -797,39 +797,7 @@ value. The behaviour of Guile's evaluator can be modified by manipulating the evaluator options. For more information about options, @xref{User level -options interfaces}. If you want to know which evaluator options are -available, @xref{Evaluator options}. - -@c FIXME::martin: This is taken from libguile/options.c. Is there -@c actually a difference between 'help and 'full? - -@deffn {Scheme Procedure} eval-options [setting] -Display the current settings of the evaluator options. If @var{setting} -is omitted, only a short form of the current evaluator options is -printed. Otherwise, @var{setting} should be one of the following -symbols: -@table @code -@item help -Display the complete option settings. -@item full -Like @code{help}, but also print programmer options. -@end table -@end deffn - -@deffn {Scheme Procedure} eval-enable option-name -@deffnx {Scheme Procedure} eval-disable option-name -@deffnx {Scheme Procedure} eval-set! option-name value -Modify the evaluator options. @code{eval-enable} should be used with boolean -options and switches them on, @code{eval-disable} switches them off. -@code{eval-set!} can be used to set an option to a specific value. -@end deffn - -@deffn {Scheme Procedure} eval-options-interface [setting] -@deffnx {C Function} scm_eval_options_interface (setting) -Option interface for the evaluation options. Instead of using -this procedure directly, use the procedures @code{eval-enable}, -@code{eval-disable}, @code{eval-set!} and @code{eval-options}. -@end deffn +options interfaces}. @c FIXME::martin: Why aren't these procedure named like the other options @c procedures? diff --git a/doc/ref/api-options.texi b/doc/ref/api-options.texi index 6a3aa2f18..d2710bbaa 100644 --- a/doc/ref/api-options.texi +++ b/doc/ref/api-options.texi @@ -392,7 +392,6 @@ configure @emph{reading}, @emph{printing}, @emph{debugging} or * Reader options:: * Printing options:: * Debugger options:: -* Evaluator options:: * Evaluator trap options:: * Examples of option use:: @end menu @@ -402,7 +401,6 @@ configure @emph{reading}, @emph{printing}, @emph{debugging} or @subsubsection Low Level Options Interfaces @deffn {Scheme Procedure} read-options-interface [setting] -@deffnx {Scheme Procedure} eval-options-interface [setting] @deffnx {Scheme Procedure} print-options-interface [setting] @deffnx {Scheme Procedure} debug-options-interface [setting] @deffnx {Scheme Procedure} evaluator-traps-interface [setting] @@ -548,17 +546,6 @@ closure-hook #f Hook for printing closures. @end smallexample -@node Evaluator options -@subsubsection Evaluator options - -These are the evaluator options with their default values, as they are -printed by typing @code{(eval-options 'full)} in Guile. - -@smallexample -stack 22000 Size of thread stacks (in machine words). -@end smallexample - - @node Evaluator trap options @subsubsection Evaluator trap options [FIXME: These flags, together with their corresponding handlers, are not |