]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix documentation of 'other-window-for-scrolling'
authorEli Zaretskii <eliz@gnu.org>
Mon, 25 Mar 2024 13:12:42 +0000 (15:12 +0200)
committerEshel Yaron <me@eshelyaron.com>
Sat, 30 Mar 2024 19:35:01 +0000 (20:35 +0100)
* src/window.c (Fother_window_for_scrolling): More accurate
documentation of how "the other" window is looked for.  Suggested
by Karthik Chikmagalur <karthikchikmagalur@gmail.com>.

(cherry picked from commit 9d3d77f12dac21c633cf10f111b0e4e574036b30)

src/window.c

index 748ad9e77d442aa6552c2ebddba868fc1c164fe7..fe26311fbb2ba833e328449ad4452cf31a875cfd 100644 (file)
@@ -6504,13 +6504,16 @@ When calling from a program, supply as argument a number, nil, or `-'.  */)
 }
 \f
 DEFUN ("other-window-for-scrolling", Fother_window_for_scrolling, Sother_window_for_scrolling, 0, 0, 0,
-       doc: /* Return the other window for \"other window scroll\" commands.
-If in the minibuffer, `minibuffer-scroll-window' if non-nil
-specifies the window.
-Otherwise, if `other-window-scroll-buffer' is non-nil, a window
-showing that buffer is used, popping the buffer up if necessary.
-Finally, look for a neighboring window on the selected frame,
-followed by all visible frames on the current terminal.  */)
+       doc: /* Return \"the other\" window for \"other window scroll\" commands.
+If in the minibuffer, and `minibuffer-scroll-window' is non-nil,
+it specifies the window to use.
+Otherwise, if `other-window-scroll-buffer' is a buffer, a window
+showing that buffer is the window to use, popping it up if necessary.
+Otherwise, if `other-window-scroll-default' is a function, call it,
+and the window it returns is the window to use.
+Finally, the function looks for a neighboring window on the selected
+frame, followed by windows on all the visible frames on the current
+terminal.  */)
   (void)
 {
   Lisp_Object window;