diff options
author | Andy Wingo <wingo@pobox.com> | 2010-10-01 11:15:12 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2010-10-01 11:15:12 +0200 |
commit | 84898084c0a56dbcf1e4753ae73d4462425cf9fa (patch) | |
tree | 504077bf081619b47cf1c673bda73502cf09acc2 /doc/ref/api-options.texi | |
parent | 1518f6494873c4bc4bced49d3e0e903f37c644c6 (diff) | |
download | guile-84898084c0a56dbcf1e4753ae73d4462425cf9fa.tar.gz |
debug and readline options doc tweak
* doc/ref/api-options.texi (Debugger options):
* doc/ref/repl-modules.texi (Readline Options): Use 'help instead of
'full (they are entirely equivalent right now). Update output to show
options in the right order.
Diffstat (limited to 'doc/ref/api-options.texi')
-rw-r--r-- | doc/ref/api-options.texi | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/doc/ref/api-options.texi b/doc/ref/api-options.texi index fdc8e85f7..3b600dbdc 100644 --- a/doc/ref/api-options.texi +++ b/doc/ref/api-options.texi @@ -395,19 +395,20 @@ configure @emph{reading}, @emph{printing}, or @emph{debugging}. @subsubsection Debugger options Here is the list of print options generated by typing -@code{(debug-options 'full)} in Guile. You can also see the default +@code{(debug-options 'help)} in Guile. You can also see the default values. @smallexample -warn-deprecated no Warn when deprecated features are used. -show-file-name #t Show file names and line numbers in backtraces +backwards no Display backtrace in anti-chronological order. +width 79 Maximal width of backtrace. +depth 20 Maximal length of printed backtrace. +backtrace yes Show backtrace on error. +stack 1048576 Stack size limit (measured in words; + 0 = no check). +show-file-name #t Show file names and line numbers in backtraces when not `#f'. A value of `base' displays only - base names, while `#t' displays full names. -stack 1048576 Stack size limit (measured in words; 0 = no check). -backtrace yes Show backtrace on error. -depth 20 Maximal length of printed backtrace. -width 79 Maximal width of backtrace. -backwards no Display backtrace in anti-chronological order. + base names, while `#t' displays full names. +warn-deprecated no Warn when deprecated features are used. @end smallexample @subsubheading Stack overflow |