aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2014-02-13 00:26:01 -0800
committerGlenn Morris2014-02-13 00:26:01 -0800
commit47a73eb0718124dd26dfb656d3971080eaea0aa5 (patch)
treeb3b7146d81f8abf983f5d40e78e20ee61e89c807 /doc
parentc9b6b2624b64d119d2d6a1084c478413353a0721 (diff)
downloademacs-47a73eb0718124dd26dfb656d3971080eaea0aa5.tar.gz
emacs-47a73eb0718124dd26dfb656d3971080eaea0aa5.zip
Small doc updates for debugging
* doc/lispref/debugging.texi (Debugger Commands): Tiny edits. * lisp/jit-lock.el (jit-lock-mode): Doc fix. * etc/NEWS: Related edits.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/debugging.texi6
2 files changed, 7 insertions, 3 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index c304cac04ba..f10577faf77 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
12014-02-13 Glenn Morris <rgm@gnu.org>
2
3 * debugging.texi (Debugger Commands): Tiny edits.
4
12014-02-12 Glenn Morris <rgm@gnu.org> 52014-02-12 Glenn Morris <rgm@gnu.org>
2 6
3 * package.texi (Simple Packages): Describe URL and Keywords headers. 7 * package.texi (Simple Packages): Describe URL and Keywords headers.
diff --git a/doc/lispref/debugging.texi b/doc/lispref/debugging.texi
index 774ac594e0d..a9d0c1c4ed0 100644
--- a/doc/lispref/debugging.texi
+++ b/doc/lispref/debugging.texi
@@ -425,7 +425,8 @@ Flag the current frame like @kbd{b}. Then continue execution like
425are set up to do so by @code{debug-on-entry}. 425are set up to do so by @code{debug-on-entry}.
426 426
427@item e 427@item e
428Read a Lisp expression in the minibuffer, evaluate it, and print the 428Read a Lisp expression in the minibuffer, evaluate it (with the
429relevant lexical environment, if applicable), and print the
429value in the echo area. The debugger alters certain important 430value in the echo area. The debugger alters certain important
430variables, and the current buffer, as part of its operation; @kbd{e} 431variables, and the current buffer, as part of its operation; @kbd{e}
431temporarily restores their values from outside the debugger, so you can 432temporarily restores their values from outside the debugger, so you can
@@ -465,8 +466,7 @@ function and thus cancel the effect of @code{debug-on-entry}, it may
465erroneously show up in this list. 466erroneously show up in this list.
466 467
467@item v 468@item v
468Display local variables (@pxref{Local Variables}) of the current stack 469Toggle the display of local variables of the current stack frame.
469frame. Press @kbd{e} again to hide them.
470@end table 470@end table
471 471
472@node Invoking the Debugger 472@node Invoking the Debugger