Add missing argument in call of get-largest-window (Bug#15185).
* window.el (display-buffer-use-some-window): Add missing argument in call of get-largest-window (Bug#15185). Reported by Stephen Leake.
This commit is contained in:
parent
ffeb6dec74
commit
7c97d35ecc
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2013-08-27 Martin Rudalics <rudalics@gmx.at>
|
||||
|
||||
* window.el (display-buffer-use-some-window): Add missing
|
||||
argument in call of get-largest-window (Bug#15185). Reported by
|
||||
Stephen Leake.
|
||||
|
||||
2013-08-27 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* emacs-lisp/package.el (package-buffer-info): Fix message typo.
|
||||
|
|
|
@ -5813,7 +5813,7 @@ that frame."
|
|||
(unless (and not-this-window
|
||||
(eq window (selected-window)))
|
||||
window))
|
||||
(get-largest-window 0 not-this-window))))
|
||||
(get-largest-window 0 nil not-this-window))))
|
||||
(when (window-live-p window)
|
||||
(prog1
|
||||
(window--display-buffer buffer window 'reuse alist)
|
||||
|
|
Loading…
Add table
Reference in a new issue