Fix last fix of display-buffer-normalize-options.
This commit is contained in:
parent
3ce9d0d41b
commit
bd168c0651
1 changed files with 5 additions and 4 deletions
|
@ -5437,11 +5437,12 @@ options."
|
|||
;; `pop-up-frames', `display-buffer-reuse-frames', and
|
||||
;; `last-nonminibuffer-frame' set means search for a window shoing
|
||||
;; the same buffer of another frame.
|
||||
(let ((frames (or (last-nonminibuffer-frame)
|
||||
(and (or use-pop-up-frames
|
||||
display-buffer-reuse-frames)
|
||||
(let ((frames (or (and (or use-pop-up-frames
|
||||
display-buffer-reuse-frames
|
||||
(not (last-nonminibuffer-frame)))
|
||||
;; All visible or iconfied frames.
|
||||
0))))
|
||||
0)
|
||||
(last-nonminibuffer-frame))))
|
||||
(when frames
|
||||
(setq specifiers
|
||||
(cons (list 'reuse-window 'other 'same frames)
|
||||
|
|
Loading…
Add table
Reference in a new issue