]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix docs on `display-buffer-below-selected' (Bug#24213)
authorMartin Rudalics <rudalics@gmx.at>
Sat, 13 Aug 2016 07:59:14 +0000 (09:59 +0200)
committerMartin Rudalics <rudalics@gmx.at>
Sat, 13 Aug 2016 07:59:14 +0000 (09:59 +0200)
* lisp/window.el (display-buffer-below-selected): Fix
doc-string (Bug#24213).
* doc/lispref/windows.texi (Display Action Functions): Fix
documentation of `display-buffer-below-selected'.

doc/lispref/windows.texi
lisp/window.el

index ad0c3237e69603f71345e7a9f02336b42a687285..7a5d1bbf166b728fdf9f24ee591317be51935b0c 100644 (file)
@@ -2524,10 +2524,17 @@ parameter; @pxref{Buffer Parameters}).
 
 @defun display-buffer-below-selected buffer alist
 This function tries to display @var{buffer} in a window below the
-selected window.  This means to either split the selected window or use
-the window below the selected one.  If it does create a new window, it
-will also adjust its size provided @var{alist} contains a suitable
+selected window.  If there is a window below the selected one and that
+window already displays @var{buffer}, it reuses that window.
+
+If there is no such window, this function tries to create a new window
+by splitting the selected one and display @var{buffer} there.  It will
+also adjust that window's size provided @var{alist} contains a suitable
 @code{window-height} or @code{window-width} entry, see above.
+
+If splitting the selected window fails and there is a non-dedicated
+window below the selected one showing some other buffer, it uses that
+window for showing @var{buffer}.
 @end defun
 
 @defun display-buffer-in-previous-window buffer alist
index bf1f13e77666737e019ece20b97c4e37e98a65cc..11d7a4e90d4612c916ac0b794ad979f3dcbf191a 100644 (file)
@@ -6879,7 +6879,6 @@ raising the frame."
 
 (defun display-buffer--maybe-pop-up-frame-or-window (buffer alist)
   "Try displaying BUFFER based on `pop-up-frames' or `pop-up-windows'.
-
 If `pop-up-frames' is non-nil (and not `graphic-only' on a
 text-only terminal), try with `display-buffer-pop-up-frame'.
 
@@ -6894,8 +6893,11 @@ again with `display-buffer-pop-up-window'."
 
 (defun display-buffer-below-selected (buffer alist)
   "Try displaying BUFFER in a window below the selected window.
-This either splits the selected window or reuses the window below
-the selected one."
+If there is a window below the selected one and that window
+already displays BUFFER, use that window.  Otherwise, try to
+create a new window below the selected one and show BUFFER there.
+If that attempt fails as well and there is a non-dedicated window
+below the selected one, use that window."
   (let (window)
     (or (and (setq window (window-in-direction 'below))
             (eq buffer (window-buffer window))