aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-03-30 09:12:37 -0700
committerGlenn Morris2012-03-30 09:12:37 -0700
commitf12242679ad7c01b312e088991d87a4384b6efcf (patch)
tree41b7a3f619ff57479a654a78c5e49c709c8844ed
parent935d1290a62946effd560bd6177bd5d9a9d9c82a (diff)
downloademacs-f12242679ad7c01b312e088991d87a4384b6efcf.tar.gz
emacs-f12242679ad7c01b312e088991d87a4384b6efcf.zip
* doc/lispref/edebug.texi (Jumping): Give name of `i' binding.
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/edebug.texi7
2 files changed, 9 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index dfd1180b556..f714638cdc9 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
12012-03-30 Glenn Morris <rgm@gnu.org>
2
3 * edebug.texi (Jumping): Give name of `i' binding.
4
12012-03-28 Glenn Morris <rgm@gnu.org> 52012-03-28 Glenn Morris <rgm@gnu.org>
2 6
3 * searching.texi (Regular Expressions, Regexp Special): 7 * searching.texi (Regular Expressions, Regexp Special):
diff --git a/doc/lispref/edebug.texi b/doc/lispref/edebug.texi
index 669a5d0edcd..733ac5b31b4 100644
--- a/doc/lispref/edebug.texi
+++ b/doc/lispref/edebug.texi
@@ -1,6 +1,6 @@
1@comment -*-texinfo-*- 1@comment -*-texinfo-*-
2@c This is part of the GNU Emacs Lisp Reference Manual. 2@c This is part of the GNU Emacs Lisp Reference Manual.
3@c Copyright (C) 1992-1994, 1998-1999, 2001-2012 Free Software Foundation, Inc. 3@c Copyright (C) 1992-1994, 1998-1999, 2001-2012 Free Software Foundation, Inc.
4@c See the file elisp.texi for copying conditions. 4@c See the file elisp.texi for copying conditions.
5 5
6@c This file can also be used by an independent Edebug User 6@c This file can also be used by an independent Edebug User
@@ -214,6 +214,7 @@ evaluating forms that never instrument them: from a file with
214 214
215 If Edebug detects a syntax error while instrumenting, it leaves point 215 If Edebug detects a syntax error while instrumenting, it leaves point
216at the erroneous code and signals an @code{invalid-read-syntax} error. 216at the erroneous code and signals an @code{invalid-read-syntax} error.
217@c FIXME? I can't see that it "leaves point at the erroneous code".
217 218
218 @xref{Edebug Eval}, for other evaluation functions available 219 @xref{Edebug Eval}, for other evaluation functions available
219inside of Edebug. 220inside of Edebug.
@@ -239,6 +240,7 @@ least for a certain distance.
239@item S 240@item S
240Stop: don't execute any more of the program, but wait for more 241Stop: don't execute any more of the program, but wait for more
241Edebug commands (@code{edebug-stop}). 242Edebug commands (@code{edebug-stop}).
243@c FIXME Does not work. http://debbugs.gnu.org/9764
242 244
243@item @key{SPC} 245@item @key{SPC}
244Step: stop at the next stop point encountered (@code{edebug-step-mode}). 246Step: stop at the next stop point encountered (@code{edebug-step-mode}).
@@ -331,7 +333,8 @@ Run the program for one expression
331Run the program until the end of the containing sexp (@code{edebug-step-out}). 333Run the program until the end of the containing sexp (@code{edebug-step-out}).
332 334
333@item i 335@item i
334Step into the function or macro called by the form after point. 336Step into the function or macro called by the form after point
337(@code{edebug-step-in}).
335@end table 338@end table
336 339
337The @kbd{h} command proceeds to the stop point at or after the current 340The @kbd{h} command proceeds to the stop point at or after the current