# HG changeset patch # User Richard M. Stallman # Date 1012086267 0 # Node ID 7c5115d286df79601154cd545190051f54ce3f23 # Parent a57f4686f16b5b6bac306fc8255bac0f3527aff8 (syms_of_buffer): Doc fixes for scroll-...-aggressively. diff -r a57f4686f16b -r 7c5115d286df src/buffer.c --- a/src/buffer.c Sat Jan 26 23:02:00 2002 +0000 +++ b/src/buffer.c Sat Jan 26 23:04:27 2002 +0000 @@ -5426,16 +5426,16 @@ DEFVAR_PER_BUFFER ("scroll-up-aggressively", ¤t_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", ¤t_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.");