diff options
| author | Richard M. Stallman | 2002-01-26 23:06:28 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-01-26 23:06:28 +0000 |
| commit | 9db0af9e14f3479b60269a91c5bda5c21ce36ded (patch) | |
| tree | 36ff9d617a9af2bfb0621d6a7f2ccb3463204d37 /lispref | |
| parent | 6524d9553dcf78c66099c7244362171f06408781 (diff) | |
| download | emacs-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.texi | 22 |
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 | |||
| 1363 | scrolls the window up to @var{n} lines in either direction, if that will | 1363 | scrolls the window up to @var{n} lines in either direction, if that will |
| 1364 | bring point back into view. Otherwise, it centers point. The default | 1364 | bring point back into view. Otherwise, it centers point. The default |
| 1365 | value is zero. | 1365 | value is zero. |
| 1366 | |||
| 1367 | A value of @code{nil} is equivalent to .5, since it centers point. This | ||
| 1368 | variable 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 |
| 1373 | The value of this variable should be either @code{nil} or a fraction | 1370 | The 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 |
| 1375 | the screen to put point when scrolling upward. More precisely, when a | 1372 | the screen to put point when scrolling down. More precisely, when a |
| 1376 | window scrolls up because point is above the window start, the new start | 1373 | window scrolls down because point is above the window start, the new |
| 1377 | position is chosen to put point @var{f} part of the window height from | 1374 | start position is chosen to put point @var{f} part of the window |
| 1378 | the top. The larger @var{f}, the more aggressive the scrolling. | 1375 | height from the top. The larger @var{f}, the more aggressive the |
| 1376 | scrolling. | ||
| 1379 | 1377 | ||
| 1380 | A value of @code{nil} is equivalent to .5, since its effect is to center | 1378 | A value of @code{nil} is equivalent to .5, since its effect is to center |
| 1381 | point. This variable automatically becomes buffer-local when set in any | 1379 | point. This variable automatically becomes buffer-local when set in any |
| 1382 | fashion. | 1380 | fashion. |
| 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 |
| 1387 | Likewise, for scrolling down. The value, @var{f}, specifies how far | 1385 | Likewise, for scrolling up. The value, @var{f}, specifies how far |
| 1388 | point should be placed from the bottom of the window; thus, as with | 1386 | point 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 |