lang/emacs-lisp: don't resize non-output windows
This commit is contained in:
parent
438caf276b
commit
e6094f262f
1 changed files with 2 additions and 1 deletions
|
@ -18,7 +18,8 @@ to a pop up buffer."
|
||||||
temp-buffer-show-hook)))
|
temp-buffer-show-hook)))
|
||||||
(pp-eval-expression
|
(pp-eval-expression
|
||||||
(read (buffer-substring-no-properties beg end)))
|
(read (buffer-substring-no-properties beg end)))
|
||||||
(fit-window-to-buffer (get-buffer-window "*Pp Eval Output*"))))
|
(when-let (win (get-buffer-window "*Pp Eval Output*"))
|
||||||
|
(fit-window-to-buffer win))))
|
||||||
|
|
||||||
(defvar +emacs-lisp--face nil)
|
(defvar +emacs-lisp--face nil)
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue