aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2018-06-17 11:19:59 +0300
committerEli Zaretskii2018-06-17 11:19:59 +0300
commitffd20184ca9bb026064f28aa260f2298baeb7fc8 (patch)
tree67447e1adad5a25f9ba0285012c852aa302424de
parentcf4dc95f166d85a90560cbb3494d2eb878185862 (diff)
downloademacs-ffd20184ca9bb026064f28aa260f2298baeb7fc8.tar.gz
emacs-ffd20184ca9bb026064f28aa260f2298baeb7fc8.zip
Minor documentation fix
* doc/lispref/windows.texi (Window Start and End): Improve documentation and indexing of window-end.
-rw-r--r--doc/lispref/windows.texi4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi
index f5de2fc90ba..265067146da 100644
--- a/doc/lispref/windows.texi
+++ b/doc/lispref/windows.texi
@@ -3730,6 +3730,7 @@ argument @var{window}, then returns its result.
3730@end defun 3730@end defun
3731 3731
3732@cindex window end position 3732@cindex window end position
3733@cindex last visible position in a window
3733@defun window-end &optional window update 3734@defun window-end &optional window update
3734This function returns the position where display of its buffer ends in 3735This function returns the position where display of its buffer ends in
3735@var{window}. The default for @var{window} is the selected window. 3736@var{window}. The default for @var{window} is the selected window.
@@ -3752,7 +3753,8 @@ Even if @var{update} is non-@code{nil}, @code{window-end} does not
3752attempt to scroll the display if point has moved off the screen, the 3753attempt to scroll the display if point has moved off the screen, the
3753way real redisplay would do. It does not alter the 3754way real redisplay would do. It does not alter the
3754@code{window-start} value. In effect, it reports where the displayed 3755@code{window-start} value. In effect, it reports where the displayed
3755text will end if scrolling is not required. 3756text will end if scrolling is not required. Note that the position it
3757returns might be only partially visible.
3756@end defun 3758@end defun
3757 3759
3758@vindex window-group-end-function 3760@vindex window-group-end-function