+2009-01-05 Martin Rudalics <rudalics@gmx.at>
+
+ * window.el (display-buffer): Fix last fix.
+
2009-01-05 Juanma Barranquero <lekktu@gmail.com>
* desktop.el (desktop-save-in-desktop-dir): Use `abbreviate-file-name'
(last-nonminibuffer-frame))))
(setq window-to-use
(catch 'found
- ;; Search all visible and iconified frames for a window
- ;; displaying BUFFER. Return the selected window only
- ;; if can-use-selected-window says we may do so.
- (dolist (window (get-buffer-window-list buffer 'nomini 0))
+ ;; Search frames for a window displaying BUFFER. Return
+ ;; the selected window only if we are allowed to do so.
+ (dolist (window (get-buffer-window-list buffer 'nomini frames))
(when (or can-use-selected-window
(not (eq (selected-window) window)))
(throw 'found window))))))