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 | |
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.
-rw-r--r-- | doc/ref/api-options.texi | 19 | ||||
-rw-r--r-- | doc/ref/repl-modules.texi | 9 |
2 files changed, 15 insertions, 13 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 diff --git a/doc/ref/repl-modules.texi b/doc/ref/repl-modules.texi index 21f6520e6..78c7eee1e 100644 --- a/doc/ref/repl-modules.texi +++ b/doc/ref/repl-modules.texi @@ -97,13 +97,14 @@ debugging options (@pxref{Runtime Options}). @findex readline-disable @findex readline-set! Here is the list of readline options generated by typing -@code{(readline-options 'full)} in Guile. You can also see the +@code{(readline-options 'help)} in Guile. You can also see the default values. @smalllisp -bounce-parens 500 Time (ms) to show matching opening parenthesis (0 = off). -history-length 200 History length. -history-file yes Use history file. +history-file yes Use history file. +history-length 200 History length. +bounce-parens 500 Time (ms) to show matching opening parenthesis + (0 = off). @end smalllisp The history length specifies how many input lines will be remembered. |