diff options
| author | Lars Ingebrigtsen | 2019-10-22 13:12:03 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-10-22 13:12:08 +0200 |
| commit | 7f5d92e64326173b9d2d14567739390320403ec8 (patch) | |
| tree | b5a7aceb1857e131ae647f54eed1e4cb30012c56 /doc | |
| parent | 4a9d8bdca3e502c1e87c4c50df3926c629475d39 (diff) | |
| download | emacs-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.texi | 10 |
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 |
| 707 | Evaluate the expression before point, in the context outside of Edebug | 707 | Evaluate 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 | ||
| 710 | lists). | ||
| 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 |
| 738 | Evaluate the expression before point, in the outside context, and insert | 740 | Evaluate the expression before point, in the outside context, and |
| 739 | the value in the buffer (@code{edebug-eval-print-last-sexp}). | 741 | insert the value in the buffer (@code{edebug-eval-print-last-sexp}). |
| 742 | If given a zero prefix (for instance @kbd{C-u 0 C-j}), don't shorten | ||
| 743 | long items (like strings and lists). | ||
| 740 | 744 | ||
| 741 | @item C-x C-e | 745 | @item C-x C-e |
| 742 | Evaluate the expression before point, in the context outside of Edebug | 746 | Evaluate the expression before point, in the context outside of Edebug |