Skip to content

Commit

Permalink
Fix incorrect args to display-buffer-reuse-window in 2011-07-09T12:32…
Browse files Browse the repository at this point in the history
…:38Z!rudalics@gmx.at.

* lisp/window.el (display-buffer): Fix arguments to
display-buffer-reuse-window in last change.
  • Loading branch information
Chong Yidong committed Jul 10, 2011
1 parent 3fcf7a1 commit 8e0bc3e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions lisp/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2011-07-10 Chong Yidong <cyd@stupidchicken.com>

* window.el (display-buffer): Fix arguments to
display-buffer-reuse-window in last change.

2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)

* emulation/viper-cmd.el (viper-change-state-to-vi): Limit
Expand Down
10 changes: 5 additions & 5 deletions lisp/window.el
Original file line number Diff line number Diff line change
Expand Up @@ -5737,19 +5737,19 @@ this list as arguments."
(or (and (window-live-p window) window)
;; on the selected frame,
(display-buffer-reuse-window
buffer '(nil nil nil) other-window)
buffer '(nil nil nil) nil other-window)
;; showing BUFFER on any visible frame,
(display-buffer-reuse-window
buffer '(nil same visible) other-window)
buffer '(nil same visible) nil other-window)
;; not showing BUFFER on any visible frame,
(display-buffer-reuse-window
buffer '(nil other visible) other-window)
buffer '(nil other visible) nil other-window)
;; showing BUFFER on any visible or iconified frame,
(display-buffer-reuse-window
buffer '(nil same 0) other-window)
buffer '(nil same 0) nil other-window)
;; not showing BUFFER on any visible or iconified frame.
(display-buffer-reuse-window
buffer '(nil other 0) other-window)
buffer '(nil other 0) nil other-window)
;; If everything failed so far, try popping up a new frame
;; regardless of graphic-only restrictions.
(display-buffer-pop-up-frame buffer)))))
Expand Down

0 comments on commit 8e0bc3e

Please sign in to comment.