diff options
| author | Richard M. Stallman | 2002-01-26 23:04:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-01-26 23:04:27 +0000 |
| commit | 6524d9553dcf78c66099c7244362171f06408781 (patch) | |
| tree | 6545d54155b9ae51a230b13545075eee7e609e5a /src/buffer.c | |
| parent | 46226c1d99cde0a85470cda6e7a72b299c3de2b8 (diff) | |
| download | emacs-6524d9553dcf78c66099c7244362171f06408781.tar.gz emacs-6524d9553dcf78c66099c7244362171f06408781.zip | |
(syms_of_buffer): Doc fixes for scroll-...-aggressively.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/buffer.c b/src/buffer.c index 7f49fb4d247..49f8f346012 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5426,16 +5426,16 @@ window-systems. */); | |||
| 5426 | DEFVAR_PER_BUFFER ("scroll-up-aggressively", | 5426 | DEFVAR_PER_BUFFER ("scroll-up-aggressively", |
| 5427 | ¤t_buffer->scroll_up_aggressively, Qnil, | 5427 | ¤t_buffer->scroll_up_aggressively, Qnil, |
| 5428 | doc: /* *If a number, scroll display up aggressively. | 5428 | doc: /* *If a number, scroll display up aggressively. |
| 5429 | If scrolling a window because point is above the window start, choose | 5429 | If scrolling a window because point is below the window end, choose |
| 5430 | a new window start so that point ends up that fraction of the window's | 5430 | a new window start so that point ends up that fraction of the window's |
| 5431 | height from the top of the window. */); | 5431 | height from the bottom of the window. */); |
| 5432 | 5432 | ||
| 5433 | DEFVAR_PER_BUFFER ("scroll-down-aggressively", | 5433 | DEFVAR_PER_BUFFER ("scroll-down-aggressively", |
| 5434 | ¤t_buffer->scroll_down_aggressively, Qnil, | 5434 | ¤t_buffer->scroll_down_aggressively, Qnil, |
| 5435 | doc: /* *If a number, scroll display down aggressively. | 5435 | doc: /* *If a number, scroll display down aggressively. |
| 5436 | If scrolling a window because point is below the window end, choose | 5436 | If scrolling a window because point is above the window start, choose |
| 5437 | a new window start so that point ends up that fraction of the window's | 5437 | a new window start so that point ends up that fraction of the window's |
| 5438 | height from the bottom of the window. */); | 5438 | height from the top of the window. */); |
| 5439 | 5439 | ||
| 5440 | /*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol, | 5440 | /*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol, |
| 5441 | "Don't ask."); | 5441 | "Don't ask."); |