aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorLars Ingebrigtsen2019-10-22 13:12:03 +0200
committerLars Ingebrigtsen2019-10-22 13:12:08 +0200
commit7f5d92e64326173b9d2d14567739390320403ec8 (patch)
treeb5a7aceb1857e131ae647f54eed1e4cb30012c56 /doc
parent4a9d8bdca3e502c1e87c4c50df3926c629475d39 (diff)
downloademacs-7f5d92e64326173b9d2d14567739390320403ec8.tar.gz
emacs-7f5d92e64326173b9d2d14567739390320403ec8.zip
Make edebug-eval-last-sexp interactively take a zero prefix
* lisp/emacs-lisp/edebug.el (edebug-eval-last-sexp): Make the zero prefix work analogously to in eval-last-sexp (bug#28895). (edebug-eval-print-last-sexp): Ditto.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/edebug.texi10
1 files changed, 7 insertions, 3 deletions
diff --git a/doc/lispref/edebug.texi b/doc/lispref/edebug.texi
index 43665ea9ecd..bd287ebe1af 100644
--- a/doc/lispref/edebug.texi
+++ b/doc/lispref/edebug.texi
@@ -705,7 +705,9 @@ Evaluate expression @var{exp} in the context of Edebug itself
705 705
706@item C-x C-e 706@item C-x C-e
707Evaluate the expression before point, in the context outside of Edebug 707Evaluate the expression before point, in the context outside of Edebug
708(@code{edebug-eval-last-sexp}). 708(@code{edebug-eval-last-sexp}). If given a zero prefix (for instance
709@kbd{C-u 0 C-x C-e}), don't shorten long items (like strings and
710lists).
709@end table 711@end table
710 712
711@cindex lexical binding (Edebug) 713@cindex lexical binding (Edebug)
@@ -735,8 +737,10 @@ Manual}) as well as these special commands:
735 737
736@table @kbd 738@table @kbd
737@item C-j 739@item C-j
738Evaluate the expression before point, in the outside context, and insert 740Evaluate the expression before point, in the outside context, and
739the value in the buffer (@code{edebug-eval-print-last-sexp}). 741insert the value in the buffer (@code{edebug-eval-print-last-sexp}).
742If given a zero prefix (for instance @kbd{C-u 0 C-j}), don't shorten
743long items (like strings and lists).
740 744
741@item C-x C-e 745@item C-x C-e
742Evaluate the expression before point, in the context outside of Edebug 746Evaluate the expression before point, in the context outside of Edebug