aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Rudalics2011-06-21 10:51:30 +0200
committerMartin Rudalics2011-06-21 10:51:30 +0200
commitbd168c0651be4fd71141ba19d54389b26258e5bb (patch)
tree49daf2de8d24edbab599022861e4af7f42d02d72
parent3ce9d0d41be2eb2050c73727dac0154109333755 (diff)
downloademacs-bd168c0651be4fd71141ba19d54389b26258e5bb.tar.gz
emacs-bd168c0651be4fd71141ba19d54389b26258e5bb.zip
Fix last fix of display-buffer-normalize-options.
-rw-r--r--lisp/window.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/window.el b/lisp/window.el
index 605370aa176..4c56d7ffe11 100644
--- a/lisp/window.el
+++ b/lisp/window.el
@@ -5437,11 +5437,12 @@ options."
5437 ;; `pop-up-frames', `display-buffer-reuse-frames', and 5437 ;; `pop-up-frames', `display-buffer-reuse-frames', and
5438 ;; `last-nonminibuffer-frame' set means search for a window shoing 5438 ;; `last-nonminibuffer-frame' set means search for a window shoing
5439 ;; the same buffer of another frame. 5439 ;; the same buffer of another frame.
5440 (let ((frames (or (last-nonminibuffer-frame) 5440 (let ((frames (or (and (or use-pop-up-frames
5441 (and (or use-pop-up-frames 5441 display-buffer-reuse-frames
5442 display-buffer-reuse-frames) 5442 (not (last-nonminibuffer-frame)))
5443 ;; All visible or iconfied frames. 5443 ;; All visible or iconfied frames.
5444 0)))) 5444 0)
5445 (last-nonminibuffer-frame))))
5445 (when frames 5446 (when frames
5446 (setq specifiers 5447 (setq specifiers
5447 (cons (list 'reuse-window 'other 'same frames) 5448 (cons (list 'reuse-window 'other 'same frames)