comparison src/buffer.c @ 49057:8c97b527621e

(syms_of_buffer) <scroll-up-aggressively, scroll-down-aggressively>: Doc fixes.
author Richard M. Stallman <rms@gnu.org>
date Mon, 06 Jan 2003 00:49:20 +0000
parents 3bdd36228f48
children a80513b20297
comparison
equal deleted inserted replaced
49056:88f14a14e005 49057:8c97b527621e
5518 If non-nil, a bitmap is displayed in the left fringe of a window on 5518 If non-nil, a bitmap is displayed in the left fringe of a window on
5519 window-systems. */); 5519 window-systems. */);
5520 5520
5521 DEFVAR_PER_BUFFER ("scroll-up-aggressively", 5521 DEFVAR_PER_BUFFER ("scroll-up-aggressively",
5522 &current_buffer->scroll_up_aggressively, Qnil, 5522 &current_buffer->scroll_up_aggressively, Qnil,
5523 doc: /* *If a number, scroll display up aggressively. 5523 doc: /* How far to scroll windows upward.
5524 If scrolling a window because point is below the window end, choose 5524 If you move point off the bottom, the window scrolls automatically.
5525 a new window start so that point ends up that fraction of the window's 5525 This variable controls how far it scrolls. nil, the default,
5526 height from the bottom of the window. Meaningful values are 5526 means scroll to center point. A fraction means scroll to put point
5527 that fraction of the window's height from the bottom of the window.
5528 When the value is 0.0, point goes at the bottom line, which in the simple
5529 case that you moved off with C-f means scrolling just one line. 1.0 means
5530 point goes at the top, so that in that simple case, the window
5531 window scrolls by a full window height. Meaningful values are
5527 between 0.0 and 1.0, inclusive. */); 5532 between 0.0 and 1.0, inclusive. */);
5528 5533
5529 DEFVAR_PER_BUFFER ("scroll-down-aggressively", 5534 DEFVAR_PER_BUFFER ("scroll-down-aggressively",
5530 &current_buffer->scroll_down_aggressively, Qnil, 5535 &current_buffer->scroll_down_aggressively, Qnil,
5531 doc: /* *If a number, scroll display down aggressively. 5536 doc: /* How far to scroll windows downward.
5532 If scrolling a window because point is above the window start, choose 5537 If you move point off the top, the window scrolls automatically.
5533 a new window start so that point ends up that fraction of the window's 5538 This variable controls how far it scrolls. nil, the default,
5534 height from the top of the window. Meaningful values are 5539 means scroll to center point. A fraction means scroll to put point
5540 that fraction of the window's height from the top of the window.
5541 When the value is 0.0, point goes at the top line, which in the simple
5542 case that you moved off with C-b means scrolling just one line. 1.0 means
5543 point goes at the bottom, so that in that simple case, the window
5544 window scrolls by a full window height. Meaningful values are
5535 between 0.0 and 1.0, inclusive. */); 5545 between 0.0 and 1.0, inclusive. */);
5536 5546
5537 /*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol, 5547 /*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol,
5538 "Don't ask."); 5548 "Don't ask.");
5539 */ 5549 */