aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2011-03-26 12:20:16 -0400
committerChong Yidong2011-03-26 12:20:16 -0400
commitc5c9f40f3a8e9ec614d01fbe915c4eb2aaeb1097 (patch)
tree1d7ad87cdf63f81ea73b9e4c08ba735bbec5629e
parentddc20cdb0235bf1b1840a517044e56b7eae3d07a (diff)
downloademacs-c5c9f40f3a8e9ec614d01fbe915c4eb2aaeb1097.tar.gz
emacs-c5c9f40f3a8e9ec614d01fbe915c4eb2aaeb1097.zip
* doc/emacs/display.texi (Auto Scrolling): Fix scroll-up/scroll-down confusion.
-rw-r--r--doc/emacs/ChangeLog4
-rw-r--r--doc/emacs/display.texi12
2 files changed, 10 insertions, 6 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index 6fa1941c53e..edd66bddfdf 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,3 +1,7 @@
12011-03-26 Chong Yidong <cyd@stupidchicken.com>
2
3 * display.texi (Auto Scrolling): Fix scroll-up/scroll-down confusion.
4
12011-03-11 Eli Zaretskii <eliz@gnu.org> 52011-03-11 Eli Zaretskii <eliz@gnu.org>
2 6
3 * msdog.texi (Windows HOME): Fix the wording to clarify how Emacs sets 7 * msdog.texi (Windows HOME): Fix the wording to clarify how Emacs sets
diff --git a/doc/emacs/display.texi b/doc/emacs/display.texi
index aad061b33d9..5df8401d918 100644
--- a/doc/emacs/display.texi
+++ b/doc/emacs/display.texi
@@ -195,15 +195,15 @@ how aggressively it scrolls by setting the variables
195The value of @code{scroll-up-aggressively} should be either 195The value of @code{scroll-up-aggressively} should be either
196@code{nil}, or a fraction @var{f} between 0 and 1. A fraction 196@code{nil}, or a fraction @var{f} between 0 and 1. A fraction
197specifies where on the screen to put point when scrolling upward: when 197specifies where on the screen to put point when scrolling upward: when
198a window scrolls up because point is above the window start, the new 198a window scrolls up because point below the window end, the new start
199start position is chosen to put point @var{f} parts of the window 199position is chosen to put point @var{f} parts of the window height
200height from the top. Thus, larger @var{f} means more aggressive 200from the bottom. Thus, larger @var{f} means more aggressive
201scrolling. The default value, @code{nil}, is equivalent to 0.5. 201scrolling. The default value, @code{nil}, is equivalent to 0.5.
202 202
203 Likewise, @code{scroll-down-aggressively} is used for scrolling 203 Likewise, @code{scroll-down-aggressively} is used for scrolling
204down. The value specifies how far point should be placed from the 204down. The value specifies how far point should be placed from the top
205bottom of the window; thus, as with @code{scroll-up-aggressively}, a 205of the window; thus, as with @code{scroll-up-aggressively}, a larger
206larger value is more aggressive. 206value is more aggressive.
207 207
208@vindex scroll-margin 208@vindex scroll-margin
209 The variable @code{scroll-margin} restricts how close point can come 209 The variable @code{scroll-margin} restricts how close point can come