diff options
| author | Juanma Barranquero | 2008-08-05 15:04:03 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-08-05 15:04:03 +0000 |
| commit | d765e3a3d56e042a8ac91fccc7d82ca26eb03b65 (patch) | |
| tree | 31ce809435c62c3e42fcd86ca63a4a5cb987e81c /src/buffer.c | |
| parent | 5acbda73bb94158d2fc4f67203e76ddd4c79d134 (diff) | |
| download | emacs-d765e3a3d56e042a8ac91fccc7d82ca26eb03b65.tar.gz emacs-d765e3a3d56e042a8ac91fccc7d82ca26eb03b65.zip | |
* buffer.c (syms_of_buffer) <scroll-up-aggressively>:
<scroll-down-aggressively, before-change-functions>:
<after-change-functions>: Reflow docstrings.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/buffer.c b/src/buffer.c index a2d0cfac591..2cbd5f41b13 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5823,7 +5823,7 @@ in a file, save the ^M as a newline. */); | |||
| 5823 | 5823 | ||
| 5824 | #ifndef old | 5824 | #ifndef old |
| 5825 | DEFVAR_PER_BUFFER ("selective-display-ellipses", | 5825 | DEFVAR_PER_BUFFER ("selective-display-ellipses", |
| 5826 | ¤t_buffer->selective_display_ellipses, | 5826 | ¤t_buffer->selective_display_ellipses, |
| 5827 | Qnil, | 5827 | Qnil, |
| 5828 | doc: /* Non-nil means display ... on previous line when a line is invisible. */); | 5828 | doc: /* Non-nil means display ... on previous line when a line is invisible. */); |
| 5829 | #endif | 5829 | #endif |
| @@ -5988,10 +5988,10 @@ If you move point off the bottom, the window scrolls automatically. | |||
| 5988 | This variable controls how far it scrolls. The value nil, the default, | 5988 | This variable controls how far it scrolls. The value nil, the default, |
| 5989 | means scroll to center point. A fraction means scroll to put point | 5989 | means scroll to center point. A fraction means scroll to put point |
| 5990 | that fraction of the window's height from the bottom of the window. | 5990 | that fraction of the window's height from the bottom of the window. |
| 5991 | When the value is 0.0, point goes at the bottom line, which in the simple | 5991 | When the value is 0.0, point goes at the bottom line, which in the |
| 5992 | case that you moved off with C-f means scrolling just one line. 1.0 means | 5992 | simple case that you moved off with C-f means scrolling just one line. |
| 5993 | point goes at the top, so that in that simple case, the window | 5993 | 1.0 means point goes at the top, so that in that simple case, the |
| 5994 | scrolls by a full window height. Meaningful values are | 5994 | window scrolls by a full window height. Meaningful values are |
| 5995 | between 0.0 and 1.0, inclusive. */); | 5995 | between 0.0 and 1.0, inclusive. */); |
| 5996 | 5996 | ||
| 5997 | DEFVAR_PER_BUFFER ("scroll-down-aggressively", | 5997 | DEFVAR_PER_BUFFER ("scroll-down-aggressively", |
| @@ -6001,10 +6001,10 @@ If you move point off the top, the window scrolls automatically. | |||
| 6001 | This variable controls how far it scrolls. The value nil, the default, | 6001 | This variable controls how far it scrolls. The value nil, the default, |
| 6002 | means scroll to center point. A fraction means scroll to put point | 6002 | means scroll to center point. A fraction means scroll to put point |
| 6003 | that fraction of the window's height from the top of the window. | 6003 | that fraction of the window's height from the top of the window. |
| 6004 | When the value is 0.0, point goes at the top line, which in the simple | 6004 | When the value is 0.0, point goes at the top line, which in the |
| 6005 | case that you moved off with C-b means scrolling just one line. 1.0 means | 6005 | simple case that you moved off with C-b means scrolling just one line. |
| 6006 | point goes at the bottom, so that in that simple case, the window | 6006 | 1.0 means point goes at the bottom, so that in that simple case, the |
| 6007 | scrolls by a full window height. Meaningful values are | 6007 | window scrolls by a full window height. Meaningful values are |
| 6008 | between 0.0 and 1.0, inclusive. */); | 6008 | between 0.0 and 1.0, inclusive. */); |
| 6009 | 6009 | ||
| 6010 | /*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol, | 6010 | /*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol, |
| @@ -6021,8 +6021,8 @@ No information is given about the length of the text after the change. | |||
| 6021 | Buffer changes made while executing the `before-change-functions' | 6021 | Buffer changes made while executing the `before-change-functions' |
| 6022 | don't call any before-change or after-change functions. | 6022 | don't call any before-change or after-change functions. |
| 6023 | That's because these variables are temporarily set to nil. | 6023 | That's because these variables are temporarily set to nil. |
| 6024 | As a result, a hook function cannot straightforwardly alter the value of | 6024 | As a result, a hook function cannot straightforwardly alter the |
| 6025 | these variables. See the Emacs Lisp manual for a way of | 6025 | value of these variables. See the Emacs Lisp manual for a way of |
| 6026 | accomplishing an equivalent result by using other variables. | 6026 | accomplishing an equivalent result by using other variables. |
| 6027 | 6027 | ||
| 6028 | If an unhandled error happens in running these functions, | 6028 | If an unhandled error happens in running these functions, |
| @@ -6042,8 +6042,8 @@ and the post-change beginning and end are at the same place.) | |||
| 6042 | Buffer changes made while executing the `after-change-functions' | 6042 | Buffer changes made while executing the `after-change-functions' |
| 6043 | don't call any before-change or after-change functions. | 6043 | don't call any before-change or after-change functions. |
| 6044 | That's because these variables are temporarily set to nil. | 6044 | That's because these variables are temporarily set to nil. |
| 6045 | As a result, a hook function cannot straightforwardly alter the value of | 6045 | As a result, a hook function cannot straightforwardly alter the |
| 6046 | these variables. See the Emacs Lisp manual for a way of | 6046 | value of these variables. See the Emacs Lisp manual for a way of |
| 6047 | accomplishing an equivalent result by using other variables. | 6047 | accomplishing an equivalent result by using other variables. |
| 6048 | 6048 | ||
| 6049 | If an unhandled error happens in running these functions, | 6049 | If an unhandled error happens in running these functions, |