* window.el (display-buffer-reuse-window): Fix case where
selected window was reused with non-nil OTHER-WINDOW argument.
(Bug#9381)
+2011-08-27 Martin Rudalics <rudalics@gmx.at>
+
+ * window.el (display-buffer-reuse-window): Fix case where
+ selected window was reused with non-nil OTHER-WINDOW argument.
+ (Bug#9381)
+
2011-08-27 Deniz Dogan <deniz@dogan.se>
* net/rcirc.el (rcirc-check-auth-status): Adding support for
(or (memq (window-parameter window 'window-side)
'(nil none))
(eq window-buffer buffer))
- (or (not method-window)
+ (or (and (not method-window)
+ (or (not other-window)
+ (not (eq window (selected-window)))))
(and (eq method-window 'same)
(not other-window)
(eq window (selected-window)))