diff options
| author | Juanma Barranquero | 2006-12-11 15:43:47 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2006-12-11 15:43:47 +0000 |
| commit | fc96125678dddb603eb47f630aa9c994a736fdec (patch) | |
| tree | f1876877ac330063cbade5a8cbbccba7827dc393 /src/buffer.c | |
| parent | f368450536ddbcaa27f7cfbfd4256d77c4778146 (diff) | |
| download | emacs-fc96125678dddb603eb47f630aa9c994a736fdec.tar.gz emacs-fc96125678dddb603eb47f630aa9c994a736fdec.zip | |
(syms_of_buffer) <cursor-in-non-selected-windows, line-spacing, left-margin,
default-scroll-up-aggressively, default-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 cd0423d0267..18bed7a865e 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5431,13 +5431,13 @@ This is the same as (default-value 'fringe-cursor-alist'). */); | |||
| 5431 | &buffer_defaults.scroll_up_aggressively, | 5431 | &buffer_defaults.scroll_up_aggressively, |
| 5432 | doc: /* Default value of `scroll-up-aggressively'. | 5432 | doc: /* Default value of `scroll-up-aggressively'. |
| 5433 | This value applies in buffers that don't have their own local values. | 5433 | This value applies in buffers that don't have their own local values. |
| 5434 | This variable is an alias for (default-value 'scroll-up-aggressively). */); | 5434 | This is the same as (default-value 'scroll-up-aggressively). */); |
| 5435 | 5435 | ||
| 5436 | DEFVAR_LISP_NOPRO ("default-scroll-down-aggressively", | 5436 | DEFVAR_LISP_NOPRO ("default-scroll-down-aggressively", |
| 5437 | &buffer_defaults.scroll_down_aggressively, | 5437 | &buffer_defaults.scroll_down_aggressively, |
| 5438 | doc: /* Default value of `scroll-down-aggressively'. | 5438 | doc: /* Default value of `scroll-down-aggressively'. |
| 5439 | This value applies in buffers that don't have their own local values. | 5439 | This value applies in buffers that don't have their own local values. |
| 5440 | This variable is an alias for (default-value 'scroll-down-aggressively). */); | 5440 | This is the same as (default-value 'scroll-down-aggressively). */); |
| 5441 | 5441 | ||
| 5442 | DEFVAR_PER_BUFFER ("header-line-format", | 5442 | DEFVAR_PER_BUFFER ("header-line-format", |
| 5443 | ¤t_buffer->header_line_format, | 5443 | ¤t_buffer->header_line_format, |
| @@ -5531,7 +5531,7 @@ Interactively, you can set the buffer local value using \\[set-fill-column]. */ | |||
| 5531 | 5531 | ||
| 5532 | DEFVAR_PER_BUFFER ("left-margin", ¤t_buffer->left_margin, | 5532 | DEFVAR_PER_BUFFER ("left-margin", ¤t_buffer->left_margin, |
| 5533 | make_number (Lisp_Int), | 5533 | make_number (Lisp_Int), |
| 5534 | doc: /* *Column for the default indent-line-function to indent to. | 5534 | doc: /* *Column for the default `indent-line-function' to indent to. |
| 5535 | Linefeed indents to this column in Fundamental mode. */); | 5535 | Linefeed indents to this column in Fundamental mode. */); |
| 5536 | 5536 | ||
| 5537 | DEFVAR_PER_BUFFER ("tab-width", ¤t_buffer->tab_width, | 5537 | DEFVAR_PER_BUFFER ("tab-width", ¤t_buffer->tab_width, |
| @@ -6036,12 +6036,12 @@ this variable has no effect; the cursor appears as a hollow box. */); | |||
| 6036 | doc: /* Additional space to put between lines when displaying a buffer. | 6036 | doc: /* Additional space to put between lines when displaying a buffer. |
| 6037 | The space is measured in pixels, and put below lines on window systems. | 6037 | The space is measured in pixels, and put below lines on window systems. |
| 6038 | If value is a floating point number, it specifies the spacing relative | 6038 | If value is a floating point number, it specifies the spacing relative |
| 6039 | to the default frame line height. nil means add no extra space. */); | 6039 | to the default frame line height. A value of nil means add no extra space. */); |
| 6040 | 6040 | ||
| 6041 | DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows", | 6041 | DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows", |
| 6042 | ¤t_buffer->cursor_in_non_selected_windows, Qnil, | 6042 | ¤t_buffer->cursor_in_non_selected_windows, Qnil, |
| 6043 | doc: /* *Cursor type to display in non-selected windows. | 6043 | doc: /* *Cursor type to display in non-selected windows. |
| 6044 | t means to use hollow box cursor. See `cursor-type' for other values. */); | 6044 | The value t means to use hollow box cursor. See `cursor-type' for other values. */); |
| 6045 | 6045 | ||
| 6046 | DEFVAR_LISP ("kill-buffer-query-functions", &Vkill_buffer_query_functions, | 6046 | DEFVAR_LISP ("kill-buffer-query-functions", &Vkill_buffer_query_functions, |
| 6047 | doc: /* List of functions called with no args to query before killing a buffer. */); | 6047 | doc: /* List of functions called with no args to query before killing a buffer. */); |