mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 04:21:24 +00:00
; pp-eval-expression: Restore binding deactivate-mark to nil.
See bug#80236.
This commit is contained in:
parent
f366c0e18f
commit
1197ccf993
1 changed files with 2 additions and 1 deletions
|
|
@ -407,7 +407,8 @@ of displaying it in the echo area or a temporary buffer."
|
|||
(let ((result (eval expression lexical-binding)))
|
||||
(values--store-value result)
|
||||
(if insert-value
|
||||
(insert (pp-to-string result))
|
||||
(let (deactivate-mark)
|
||||
(insert (pp-to-string result)))
|
||||
(pp-display-expression result "*Pp Eval Output*" pp-use-max-width))))
|
||||
|
||||
;;;###autoload
|
||||
|
|
|
|||
Loading…
Reference in a new issue