1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-02 11:50:48 -08:00

*** empty log message ***

This commit is contained in:
Gerd Moellmann 2001-07-26 12:34:25 +00:00
parent 5f0962558d
commit f6e6cdf26a
2 changed files with 8 additions and 0 deletions

View file

@ -1150,6 +1150,9 @@ the first 12 members of a list and at most 4 nesting levels deep (if
the list is longer or deeper than that, an ellipsis `...' is
printed).
<RET> or <mouse-2> on the printed text replace the abbreviated printed
representation with an unabbreviated one.
The default value of eval-expression-debug-on-error is t, so any error
during evaluation produces a backtrace.

View file

@ -1,5 +1,10 @@
2001-07-26 Gerd Moellmann <gerd@gnu.org>
* emacs-lisp/lisp-mode.el (last-sexp-print): New function.
(eval-last-sexp-1): Give printed text a `keymap' property and bind
<mouse-2> and <RET> in that map to a function printing the
unabbreviated value.
* emacs-lisp/lisp-mode.el (eval-last-sexp-1): If standard-output
is a buffer, put a text property `printed-value' on the printed
representation, with the Lisp object printed as value.