diff options
| author | Xue Fuqiao | 2013-12-22 11:36:04 +0800 |
|---|---|---|
| committer | Xue Fuqiao | 2013-12-22 11:36:04 +0800 |
| commit | c9832cd81039676761e5c40d5ed939435f1b0c56 (patch) | |
| tree | db48fc750766aca21cc5b05c00b9c785010cdb42 /doc | |
| parent | ced5cc2911ef5457d64db91b73543cd92f650521 (diff) | |
| download | emacs-c9832cd81039676761e5c40d5ed939435f1b0c56.tar.gz emacs-c9832cd81039676761e5c40d5ed939435f1b0c56.zip | |
Document `debugger-toggle-locals'.
* doc/lispref/debugging.texi (Debugger Commands): Document `debugger-toggle-locals'.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/debugging.texi | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index ccd236403b8..540ac07bf9f 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-12-22 Xue Fuqiao <xfq.free@gmail.com> | ||
| 2 | |||
| 3 | * debugging.texi (Debugger Commands): Document `debugger-toggle-locals'. | ||
| 4 | |||
| 1 | 2013-12-21 Chong Yidong <cyd@gnu.org> | 5 | 2013-12-21 Chong Yidong <cyd@gnu.org> |
| 2 | 6 | ||
| 3 | * text.texi (Region Indent): Note the new interactive behavior of | 7 | * text.texi (Region Indent): Note the new interactive behavior of |
diff --git a/doc/lispref/debugging.texi b/doc/lispref/debugging.texi index 335e3f802d2..6cbc0b48b5e 100644 --- a/doc/lispref/debugging.texi +++ b/doc/lispref/debugging.texi | |||
| @@ -388,6 +388,7 @@ the same function. (To do this, visit the source for the function and | |||
| 388 | type @kbd{C-M-x} on its definition.) You cannot use the Lisp debugger | 388 | type @kbd{C-M-x} on its definition.) You cannot use the Lisp debugger |
| 389 | to step through a primitive function. | 389 | to step through a primitive function. |
| 390 | 390 | ||
| 391 | @c FIXME: Add @findex for the following commands? --xfq | ||
| 391 | Here is a list of Debugger mode commands: | 392 | Here is a list of Debugger mode commands: |
| 392 | 393 | ||
| 393 | @table @kbd | 394 | @table @kbd |
| @@ -462,6 +463,10 @@ This is a list of functions that are set to break on entry by means of | |||
| 462 | @code{debug-on-entry}. @strong{Warning:} if you redefine such a | 463 | @code{debug-on-entry}. @strong{Warning:} if you redefine such a |
| 463 | function and thus cancel the effect of @code{debug-on-entry}, it may | 464 | function and thus cancel the effect of @code{debug-on-entry}, it may |
| 464 | erroneously show up in this list. | 465 | erroneously show up in this list. |
| 466 | |||
| 467 | @item v | ||
| 468 | Display local variables (@pxref{Local Variables}) of the current stack | ||
| 469 | frame. Press @kbd{e} again to hide them. | ||
| 465 | @end table | 470 | @end table |
| 466 | 471 | ||
| 467 | @node Invoking the Debugger | 472 | @node Invoking the Debugger |