diff options
| author | Juanma Barranquero | 2006-12-19 15:28:06 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2006-12-19 15:28:06 +0000 |
| commit | 426a9163c6f21aa35e922dba071b1f06bca3cbc9 (patch) | |
| tree | 93d7d90f41e471e576cb93b504b3343f41b57ed4 /src/buffer.c | |
| parent | 8c24ef08bb251afb7d8cf5556cd7fc9050b49999 (diff) | |
| download | emacs-426a9163c6f21aa35e922dba071b1f06bca3cbc9.tar.gz emacs-426a9163c6f21aa35e922dba071b1f06bca3cbc9.zip | |
(syms_of_buffer) <buffer-display-table>, scroll-up-aggressively,
scroll-down-aggressively>: Doc fixes.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/buffer.c b/src/buffer.c index 97a53c5852d..cf5cdb38a22 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5679,9 +5679,9 @@ primitives `aref' and `aset' can be used to access elements of a char-table. | |||
| 5679 | Each of the char-table elements control how to display the corresponding | 5679 | Each of the char-table elements control how to display the corresponding |
| 5680 | text character: the element at index C in the table says how to display | 5680 | text character: the element at index C in the table says how to display |
| 5681 | the character whose code is C. Each element should be a vector of | 5681 | the character whose code is C. Each element should be a vector of |
| 5682 | characters or nil. nil means display the character in the default fashion; | 5682 | characters or nil. The value nil means display the character in the |
| 5683 | otherwise, the characters from the vector are delivered to the screen | 5683 | default fashion; otherwise, the characters from the vector are delivered |
| 5684 | instead of the original character. | 5684 | to the screen instead of the original character. |
| 5685 | 5685 | ||
| 5686 | For example, (aset buffer-display-table ?X ?Y) will cause Emacs to display | 5686 | For example, (aset buffer-display-table ?X ?Y) will cause Emacs to display |
| 5687 | a capital Y instead of each X character. | 5687 | a capital Y instead of each X character. |
| @@ -5812,7 +5812,7 @@ cursor type. */); | |||
| 5812 | ¤t_buffer->scroll_up_aggressively, Qnil, | 5812 | ¤t_buffer->scroll_up_aggressively, Qnil, |
| 5813 | doc: /* How far to scroll windows upward. | 5813 | doc: /* How far to scroll windows upward. |
| 5814 | If you move point off the bottom, the window scrolls automatically. | 5814 | If you move point off the bottom, the window scrolls automatically. |
| 5815 | This variable controls how far it scrolls. nil, the default, | 5815 | This variable controls how far it scrolls. The value nil, the default, |
| 5816 | means scroll to center point. A fraction means scroll to put point | 5816 | means scroll to center point. A fraction means scroll to put point |
| 5817 | that fraction of the window's height from the bottom of the window. | 5817 | that fraction of the window's height from the bottom of the window. |
| 5818 | When the value is 0.0, point goes at the bottom line, which in the simple | 5818 | When the value is 0.0, point goes at the bottom line, which in the simple |
| @@ -5825,7 +5825,7 @@ between 0.0 and 1.0, inclusive. */); | |||
| 5825 | ¤t_buffer->scroll_down_aggressively, Qnil, | 5825 | ¤t_buffer->scroll_down_aggressively, Qnil, |
| 5826 | doc: /* How far to scroll windows downward. | 5826 | doc: /* How far to scroll windows downward. |
| 5827 | If you move point off the top, the window scrolls automatically. | 5827 | If you move point off the top, the window scrolls automatically. |
| 5828 | This variable controls how far it scrolls. nil, the default, | 5828 | This variable controls how far it scrolls. The value nil, the default, |
| 5829 | means scroll to center point. A fraction means scroll to put point | 5829 | means scroll to center point. A fraction means scroll to put point |
| 5830 | that fraction of the window's height from the top of the window. | 5830 | that fraction of the window's height from the top of the window. |
| 5831 | When the value is 0.0, point goes at the top line, which in the simple | 5831 | When the value is 0.0, point goes at the top line, which in the simple |