summaryrefslogtreecommitdiff
path: root/lispref
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2002-01-28 17:04:30 +0000
committerEli Zaretskii <eliz@gnu.org>2002-01-28 17:04:30 +0000
commite15a6d66905f23c4d1843e947976d83e23406507 (patch)
tree463905eb97427e446a79f2183d01b007e3a07b25 /lispref
parent212a350590b3e7fe8ce3ab30e44f6da5a03f981a (diff)
downloademacs-e15a6d66905f23c4d1843e947976d83e23406507.tar.gz
(Textual Scrolling): Exchange meanings of scroll-up-aggressively and
scroll-down-aggressively. Delete text erroneously added for scroll-conservatively.
Diffstat (limited to 'lispref')
-rw-r--r--lispref/windows.texi22
1 files changed, 10 insertions, 12 deletions
diff --git a/lispref/windows.texi b/lispref/windows.texi
index b1f18fa7857..2e35b78db59 100644
--- a/lispref/windows.texi
+++ b/lispref/windows.texi
@@ -1359,28 +1359,26 @@ window. If the value is a positive integer @var{n}, then redisplay
scrolls the window up to @var{n} lines in either direction, if that will
bring point back into view. Otherwise, it centers point. The default
value is zero.
-
-A value of @code{nil} is equivalent to .5, since it centers point. This
-variable automatically becomes buffer-local when set in any fashion.
@end defopt
-@defopt scroll-up-aggressively
-@tindex scroll-up-aggressively
+@defopt scroll-down-aggressively
+@tindex scroll-down-aggressively
The value of this variable should be either @code{nil} or a fraction
@var{f} between 0 and 1. If it is a fraction, that specifies where on
-the screen to put point when scrolling upward. More precisely, when a
-window scrolls up because point is above the window start, the new start
-position is chosen to put point @var{f} part of the window height from
-the top. The larger @var{f}, the more aggressive the scrolling.
+the screen to put point when scrolling down. More precisely, when a
+window scrolls down because point is above the window start, the new
+start position is chosen to put point @var{f} part of the window
+height from the top. The larger @var{f}, the more aggressive the
+scrolling.
A value of @code{nil} is equivalent to .5, since its effect is to center
point. This variable automatically becomes buffer-local when set in any
fashion.
@end defopt
-@defopt scroll-down-aggressively
-@tindex scroll-down-aggressively
-Likewise, for scrolling down. The value, @var{f}, specifies how far
+@defopt scroll-up-aggressively
+@tindex scroll-up-aggressively
+Likewise, for scrolling up. The value, @var{f}, specifies how far
point should be placed from the bottom of the window; thus, as with
@code{scroll-up-aggressively}, a larger value scrolls more aggressively.
@end defopt