mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
* lisp/window.el (display-buffer-in-previous-window): Add symbolp (bug#50576)
This commit is contained in:
parent
b172049717
commit
67ab890cde
1 changed files with 2 additions and 1 deletions
|
|
@ -8363,7 +8363,8 @@ indirectly called by the latter."
|
|||
(throw 'best t)))))
|
||||
;; When ALIST has a `previous-window' entry, that entry may override
|
||||
;; anything we found so far.
|
||||
(when (and previous-window (boundp previous-window))
|
||||
(when (and previous-window (symbolp previous-window)
|
||||
(boundp previous-window))
|
||||
(setq previous-window (symbol-value previous-window)))
|
||||
(when (and (setq window previous-window)
|
||||
(window-live-p window)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue