aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2002-01-26 23:04:27 +0000
committerRichard M. Stallman <[email protected]>2002-01-26 23:04:27 +0000
commit6524d9553dcf78c66099c7244362171f06408781 (patch)
tree6545d54155b9ae51a230b13545075eee7e609e5a /src/buffer.c
parent46226c1d99cde0a85470cda6e7a72b299c3de2b8 (diff)
(syms_of_buffer): Doc fixes for scroll-...-aggressively.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 7f49fb4d24..49f8f34601 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5426,16 +5426,16 @@ window-systems. */);
DEFVAR_PER_BUFFER ("scroll-up-aggressively",
&current_buffer->scroll_up_aggressively, Qnil,
doc: /* *If a number, scroll display up aggressively.
-If scrolling a window because point is above the window start, choose
+If scrolling a window because point is below the window end, choose
a new window start so that point ends up that fraction of the window's
-height from the top of the window. */);
+height from the bottom of the window. */);
DEFVAR_PER_BUFFER ("scroll-down-aggressively",
&current_buffer->scroll_down_aggressively, Qnil,
doc: /* *If a number, scroll display down aggressively.
-If scrolling a window because point is below the window end, choose
+If scrolling a window because point is above the window start, choose
a new window start so that point ends up that fraction of the window's
-height from the bottom of the window. */);
+height from the top of the window. */);
/*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol,
"Don't ask.");