diff options
| author | Martin Rudalics | 2018-01-28 19:27:39 +0100 |
|---|---|---|
| committer | Martin Rudalics | 2018-01-28 19:27:39 +0100 |
| commit | 8d4500087f547e203cfba03f61dcbe641bf650de (patch) | |
| tree | 029c52952933d3b6d38d20dfb093ea21e9309216 /doc/lispref/debugging.texi | |
| parent | 194ded59904b77e7073e697ebf8eac08e05a7ed3 (diff) | |
| download | emacs-8d4500087f547e203cfba03f61dcbe641bf650de.tar.gz emacs-8d4500087f547e203cfba03f61dcbe641bf650de.zip | |
Fix some issues in the emacs/lispref manuals
* doc/emacs/basic.texi (Continuation Lines):
* doc/emacs/building.texi (GDB User Interface Layout):
* doc/emacs/dired.texi (Misc Dired Features):
* doc/emacs/maintaining.texi (Identifier Search):
* doc/emacs/mark.texi (Using Region):
* doc/emacs/misc.texi (Document View, DocView Conversion):
* doc/emacs/modes.texi (Major Modes):
* doc/emacs/mule.texi (Input Methods, Unibyte Mode):
* doc/emacs/sending.texi (Mail Methods): Replace @code by
@kbd.
* doc/emacs/frames.texi (Text-Only Mouse):
* doc/lispref/maps.texi (Standard Keymaps): Replace @kbd by
@key.
* doc/lispref/compile.texi (Compiler Errors): Write
non-@code{nil} instead of non-nil.
* doc/lispref/debugging.texi (Internals of Debugger):
'backtrace' is not a command. 'debugger-stack-frame-as-list'
is an option.
* doc/lispref/display.texi (Size of Displayed Text):
'window-lines-pixel-dimensions' has a last argument 'left'.
* doc/lispref/display.texi (Attribute Functions):
'set-face-underline' and 'set-face-inverse-video' are
commands.
(Tooltips): 'tooltip-frame-parameters' is an option.
(Bidirectional Display): 'bidi-paragraph-direction' is an
option.
* doc/lispref/frames.texi (Cursor Parameters): 'cursor-type'
is an option.
(Input Focus): Argument FRAME of 'x-focus-frame' is not
optional.
(Child Frames): Both arguments of 'frame-ancestor-p' are
non-optional. 'iconify-child-frame' is an option.
* doc/lispref/os.texi (Killing Emacs):
'kill-emacs-query-functions' is an option.
* doc/lispref/windows.texi (Mouse Window Auto-selection):
'mouse-autoselect-window' is an option.
Diffstat (limited to 'doc/lispref/debugging.texi')
| -rw-r--r-- | doc/lispref/debugging.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/lispref/debugging.texi b/doc/lispref/debugging.texi index fbc5238dc07..2c757dd39d5 100644 --- a/doc/lispref/debugging.texi +++ b/doc/lispref/debugging.texi | |||
| @@ -619,7 +619,7 @@ was called. The convention for arguments is detailed in the description | |||
| 619 | of @code{debug} (@pxref{Invoking the Debugger}). | 619 | of @code{debug} (@pxref{Invoking the Debugger}). |
| 620 | @end defvar | 620 | @end defvar |
| 621 | 621 | ||
| 622 | @deffn Command backtrace | 622 | @defun backtrace |
| 623 | @cindex run time stack | 623 | @cindex run time stack |
| 624 | @cindex call stack | 624 | @cindex call stack |
| 625 | This function prints a trace of Lisp function calls currently active. | 625 | This function prints a trace of Lisp function calls currently active. |
| @@ -669,9 +669,9 @@ forms are elided. | |||
| 669 | ----------- Buffer: backtrace-output ------------ | 669 | ----------- Buffer: backtrace-output ------------ |
| 670 | @end group | 670 | @end group |
| 671 | @end smallexample | 671 | @end smallexample |
| 672 | @end deffn | 672 | @end defun |
| 673 | 673 | ||
| 674 | @defvar debugger-stack-frame-as-list | 674 | @defopt debugger-stack-frame-as-list |
| 675 | If this variable is non-@code{nil}, every stack frame of the backtrace | 675 | If this variable is non-@code{nil}, every stack frame of the backtrace |
| 676 | is displayed as a list. This aims at improving the backtrace | 676 | is displayed as a list. This aims at improving the backtrace |
| 677 | readability at the cost of special forms no longer being visually | 677 | readability at the cost of special forms no longer being visually |
| @@ -700,7 +700,7 @@ example would look as follows: | |||
| 700 | ----------- Buffer: backtrace-output ------------ | 700 | ----------- Buffer: backtrace-output ------------ |
| 701 | @end group | 701 | @end group |
| 702 | @end smallexample | 702 | @end smallexample |
| 703 | @end defvar | 703 | @end defopt |
| 704 | 704 | ||
| 705 | @defvar debug-on-next-call | 705 | @defvar debug-on-next-call |
| 706 | @cindex @code{eval}, and debugging | 706 | @cindex @code{eval}, and debugging |