aboutsummaryrefslogtreecommitdiffstats
path: root/lispref
diff options
context:
space:
mode:
authorRichard M. Stallman2002-01-26 23:06:28 +0000
committerRichard M. Stallman2002-01-26 23:06:28 +0000
commit9db0af9e14f3479b60269a91c5bda5c21ce36ded (patch)
tree36ff9d617a9af2bfb0621d6a7f2ccb3463204d37 /lispref
parent6524d9553dcf78c66099c7244362171f06408781 (diff)
downloademacs-9db0af9e14f3479b60269a91c5bda5c21ce36ded.tar.gz
emacs-9db0af9e14f3479b60269a91c5bda5c21ce36ded.zip
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 a3a865f54b4..957132695f8 100644
--- a/lispref/windows.texi
+++ b/lispref/windows.texi
@@ -1363,28 +1363,26 @@ window. If the value is a positive integer @var{n}, then redisplay
1363scrolls the window up to @var{n} lines in either direction, if that will 1363scrolls the window up to @var{n} lines in either direction, if that will
1364bring point back into view. Otherwise, it centers point. The default 1364bring point back into view. Otherwise, it centers point. The default
1365value is zero. 1365value is zero.
1366
1367A value of @code{nil} is equivalent to .5, since it centers point. This
1368variable automatically becomes buffer-local when set in any fashion.
1369@end defopt 1366@end defopt
1370 1367
1371@defopt scroll-up-aggressively 1368@defopt scroll-down-aggressively
1372@tindex scroll-up-aggressively 1369@tindex scroll-down-aggressively
1373The value of this variable should be either @code{nil} or a fraction 1370The value of this variable should be either @code{nil} or a fraction
1374@var{f} between 0 and 1. If it is a fraction, that specifies where on 1371@var{f} between 0 and 1. If it is a fraction, that specifies where on
1375the screen to put point when scrolling upward. More precisely, when a 1372the screen to put point when scrolling down. More precisely, when a
1376window scrolls up because point is above the window start, the new start 1373window scrolls down because point is above the window start, the new
1377position is chosen to put point @var{f} part of the window height from 1374start position is chosen to put point @var{f} part of the window
1378the top. The larger @var{f}, the more aggressive the scrolling. 1375height from the top. The larger @var{f}, the more aggressive the
1376scrolling.
1379 1377
1380A value of @code{nil} is equivalent to .5, since its effect is to center 1378A value of @code{nil} is equivalent to .5, since its effect is to center
1381point. This variable automatically becomes buffer-local when set in any 1379point. This variable automatically becomes buffer-local when set in any
1382fashion. 1380fashion.
1383@end defopt 1381@end defopt
1384 1382
1385@defopt scroll-down-aggressively 1383@defopt scroll-up-aggressively
1386@tindex scroll-down-aggressively 1384@tindex scroll-up-aggressively
1387Likewise, for scrolling down. The value, @var{f}, specifies how far 1385Likewise, for scrolling up. The value, @var{f}, specifies how far
1388point should be placed from the bottom of the window; thus, as with 1386point should be placed from the bottom of the window; thus, as with
1389@code{scroll-up-aggressively}, a larger value scrolls more aggressively. 1387@code{scroll-up-aggressively}, a larger value scrolls more aggressively.
1390@end defopt 1388@end defopt