diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-11-06 02:20:06 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-11-06 02:20:06 +0100 |
commit | 82d0550648969ce10303b67b7a8da51c4e855501 (patch) | |
tree | 7b25a6aa3bca6092e247b57d534a7a3ed50bfe57 /lisp/emacs-lisp | |
parent | 2804747f9e05f6a3763ed85ce7167b761281dbb8 (diff) | |
download | emacs-82d0550648969ce10303b67b7a8da51c4e855501.tar.gz emacs-82d0550648969ce10303b67b7a8da51c4e855501.tar.bz2 emacs-82d0550648969ce10303b67b7a8da51c4e855501.zip |
Remove messaging in pp-display-expression.
* lisp/emacs-lisp/pp.el (pp-display-expression): Remove confusing
message -- we don't usually say that we've popped up a new buffer when
we do so.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/pp.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/pp.el b/lisp/emacs-lisp/pp.el index 8ef5979a270..3f5e1a48469 100644 --- a/lisp/emacs-lisp/pp.el +++ b/lisp/emacs-lisp/pp.el @@ -140,8 +140,7 @@ after OUT-BUFFER-NAME." (select-window window) (run-hooks 'temp-buffer-show-hook)) (when (window-live-p old-selected) - (select-window old-selected)) - (message "See buffer %s." out-buffer-name))) + (select-window old-selected)))) (message "%s" (buffer-substring (point-min) (point)))))))) (with-output-to-temp-buffer out-buffer-name (if lisp |