diff options
| author | Glenn Morris | 2012-04-10 00:11:23 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-04-10 00:11:23 -0700 |
| commit | 2bb0eca1ebe1ff1b9939b6350a2e5310c17a7e8c (patch) | |
| tree | ccd6c79c4315efd0260cd3a885cf7b4dcdf74cbc /doc/lispref/debugging.texi | |
| parent | 62200c147ccf48fdff77438e05ca296a9d40ceb4 (diff) | |
| download | emacs-2bb0eca1ebe1ff1b9939b6350a2e5310c17a7e8c.tar.gz emacs-2bb0eca1ebe1ff1b9939b6350a2e5310c17a7e8c.zip | |
In doc/lispref, use @file for buffers, per the Texinfo manual.
It renders the same as @samp, so there is no visible change in most cases.
Diffstat (limited to 'doc/lispref/debugging.texi')
| -rw-r--r-- | doc/lispref/debugging.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/lispref/debugging.texi b/doc/lispref/debugging.texi index 6e7d0078e07..115d8ff42de 100644 --- a/doc/lispref/debugging.texi +++ b/doc/lispref/debugging.texi | |||
| @@ -303,7 +303,7 @@ an implicit @code{progn} (@pxref{Sequencing}). | |||
| 303 | @subsection Using the Debugger | 303 | @subsection Using the Debugger |
| 304 | 304 | ||
| 305 | When the debugger is entered, it displays the previously selected | 305 | When the debugger is entered, it displays the previously selected |
| 306 | buffer in one window and a buffer named @samp{*Backtrace*} in another | 306 | buffer in one window and a buffer named @file{*Backtrace*} in another |
| 307 | window. The backtrace buffer contains one line for each level of Lisp | 307 | window. The backtrace buffer contains one line for each level of Lisp |
| 308 | function execution currently going on. At the beginning of this buffer | 308 | function execution currently going on. At the beginning of this buffer |
| 309 | is a message describing the reason that the debugger was invoked (such | 309 | is a message describing the reason that the debugger was invoked (such |
| @@ -412,7 +412,7 @@ the variable values within the debugger. | |||
| 412 | 412 | ||
| 413 | @item R | 413 | @item R |
| 414 | Like @kbd{e}, but also save the result of evaluation in the | 414 | Like @kbd{e}, but also save the result of evaluation in the |
| 415 | buffer @samp{*Debugger-record*}. | 415 | buffer @file{*Debugger-record*}. |
| 416 | 416 | ||
| 417 | @item q | 417 | @item q |
| 418 | Terminate the program being debugged; return to top-level Emacs | 418 | Terminate the program being debugged; return to top-level Emacs |
| @@ -450,7 +450,7 @@ to invoke the debugger. | |||
| 450 | 450 | ||
| 451 | @defun debug &rest debugger-args | 451 | @defun debug &rest debugger-args |
| 452 | This function enters the debugger. It switches buffers to a buffer | 452 | This function enters the debugger. It switches buffers to a buffer |
| 453 | named @samp{*Backtrace*} (or @samp{*Backtrace*<2>} if it is the second | 453 | named @file{*Backtrace*} (or @file{*Backtrace*<2>} if it is the second |
| 454 | recursive entry to the debugger, etc.), and fills it with information | 454 | recursive entry to the debugger, etc.), and fills it with information |
| 455 | about the stack of Lisp function calls. It then enters a recursive | 455 | about the stack of Lisp function calls. It then enters a recursive |
| 456 | edit, showing the backtrace buffer in Debugger mode. | 456 | edit, showing the backtrace buffer in Debugger mode. |
| @@ -461,7 +461,7 @@ buffer and returns to whatever called @code{debug}. This is the only | |||
| 461 | way the function @code{debug} can return to its caller. | 461 | way the function @code{debug} can return to its caller. |
| 462 | 462 | ||
| 463 | The use of the @var{debugger-args} is that @code{debug} displays the | 463 | The use of the @var{debugger-args} is that @code{debug} displays the |
| 464 | rest of its arguments at the top of the @samp{*Backtrace*} buffer, so | 464 | rest of its arguments at the top of the @file{*Backtrace*} buffer, so |
| 465 | that the user can see them. Except as described below, this is the | 465 | that the user can see them. Except as described below, this is the |
| 466 | @emph{only} way these arguments are used. | 466 | @emph{only} way these arguments are used. |
| 467 | 467 | ||
| @@ -560,7 +560,7 @@ of @code{debug} (@pxref{Invoking the Debugger}). | |||
| 560 | @cindex call stack | 560 | @cindex call stack |
| 561 | This function prints a trace of Lisp function calls currently active. | 561 | This function prints a trace of Lisp function calls currently active. |
| 562 | This is the function used by @code{debug} to fill up the | 562 | This is the function used by @code{debug} to fill up the |
| 563 | @samp{*Backtrace*} buffer. It is written in C, since it must have access | 563 | @file{*Backtrace*} buffer. It is written in C, since it must have access |
| 564 | to the stack to determine which function calls are active. The return | 564 | to the stack to determine which function calls are active. The return |
| 565 | value is always @code{nil}. | 565 | value is always @code{nil}. |
| 566 | 566 | ||