aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref/debugging.texi
diff options
context:
space:
mode:
authorGlenn Morris2012-04-10 00:11:23 -0700
committerGlenn Morris2012-04-10 00:11:23 -0700
commit2bb0eca1ebe1ff1b9939b6350a2e5310c17a7e8c (patch)
treeccd6c79c4315efd0260cd3a885cf7b4dcdf74cbc /doc/lispref/debugging.texi
parent62200c147ccf48fdff77438e05ca296a9d40ceb4 (diff)
downloademacs-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.texi10
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
306buffer in one window and a buffer named @samp{*Backtrace*} in another 306buffer in one window and a buffer named @file{*Backtrace*} in another
307window. The backtrace buffer contains one line for each level of Lisp 307window. The backtrace buffer contains one line for each level of Lisp
308function execution currently going on. At the beginning of this buffer 308function execution currently going on. At the beginning of this buffer
309is a message describing the reason that the debugger was invoked (such 309is 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
414Like @kbd{e}, but also save the result of evaluation in the 414Like @kbd{e}, but also save the result of evaluation in the
415buffer @samp{*Debugger-record*}. 415buffer @file{*Debugger-record*}.
416 416
417@item q 417@item q
418Terminate the program being debugged; return to top-level Emacs 418Terminate 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
452This function enters the debugger. It switches buffers to a buffer 452This function enters the debugger. It switches buffers to a buffer
453named @samp{*Backtrace*} (or @samp{*Backtrace*<2>} if it is the second 453named @file{*Backtrace*} (or @file{*Backtrace*<2>} if it is the second
454recursive entry to the debugger, etc.), and fills it with information 454recursive entry to the debugger, etc.), and fills it with information
455about the stack of Lisp function calls. It then enters a recursive 455about the stack of Lisp function calls. It then enters a recursive
456edit, showing the backtrace buffer in Debugger mode. 456edit, showing the backtrace buffer in Debugger mode.
@@ -461,7 +461,7 @@ buffer and returns to whatever called @code{debug}. This is the only
461way the function @code{debug} can return to its caller. 461way the function @code{debug} can return to its caller.
462 462
463The use of the @var{debugger-args} is that @code{debug} displays the 463The use of the @var{debugger-args} is that @code{debug} displays the
464rest of its arguments at the top of the @samp{*Backtrace*} buffer, so 464rest of its arguments at the top of the @file{*Backtrace*} buffer, so
465that the user can see them. Except as described below, this is the 465that 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
561This function prints a trace of Lisp function calls currently active. 561This function prints a trace of Lisp function calls currently active.
562This is the function used by @code{debug} to fill up the 562This 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
564to the stack to determine which function calls are active. The return 564to the stack to determine which function calls are active. The return
565value is always @code{nil}. 565value is always @code{nil}.
566 566