diff options
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 36 |
1 files changed, 19 insertions, 17 deletions
diff --git a/src/buffer.c b/src/buffer.c index 706410a2ed0..5eace5b96e3 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5160,21 +5160,22 @@ This is the same as (default-value 'indicate-empty-lines). */); | |||
| 5160 | 5160 | ||
| 5161 | DEFVAR_LISP_NOPRO ("default-scroll-up-aggressively", | 5161 | DEFVAR_LISP_NOPRO ("default-scroll-up-aggressively", |
| 5162 | &buffer_defaults.scroll_up_aggressively, | 5162 | &buffer_defaults.scroll_up_aggressively, |
| 5163 | doc: /* Default value of `scroll-up-aggressively' for buffers that | 5163 | doc: /* Default value of `scroll-up-aggressively'. |
| 5164 | don't override it. This is the same as (default-value | 5164 | This value applies in buffers that don't have their own local values. |
| 5165 | 'scroll-up-aggressively). */); | 5165 | This variable is an alias for (default-value 'scroll-up-aggressively). */); |
| 5166 | 5166 | ||
| 5167 | DEFVAR_LISP_NOPRO ("default-scroll-down-aggressively", | 5167 | DEFVAR_LISP_NOPRO ("default-scroll-down-aggressively", |
| 5168 | &buffer_defaults.scroll_down_aggressively, | 5168 | &buffer_defaults.scroll_down_aggressively, |
| 5169 | doc: /* Default value of `scroll-down-aggressively' for buffers that | 5169 | doc: /* Default value of `scroll-down-aggressively'. |
| 5170 | don't override it. This is the same as (default-value | 5170 | This value applies in buffers that don't have their own local values. |
| 5171 | 'scroll-down-aggressively). */); | 5171 | This variable is an alias for (default-value 'scroll-down-aggressively). */); |
| 5172 | 5172 | ||
| 5173 | DEFVAR_PER_BUFFER ("header-line-format", | 5173 | DEFVAR_PER_BUFFER ("header-line-format", |
| 5174 | ¤t_buffer->header_line_format, | 5174 | ¤t_buffer->header_line_format, |
| 5175 | Qnil, | 5175 | Qnil, |
| 5176 | doc: /* Analogous to `mode-line-format', but for the mode line that can be | 5176 | doc: /* Analogous to `mode-line-format', but controls the header line. |
| 5177 | displayed at the top of a window. */); | 5177 | The header line appears, optionally, at the top of a window; |
| 5178 | the mode line appears at the bottom. */); | ||
| 5178 | 5179 | ||
| 5179 | DEFVAR_PER_BUFFER ("mode-line-format", ¤t_buffer->mode_line_format, | 5180 | DEFVAR_PER_BUFFER ("mode-line-format", ¤t_buffer->mode_line_format, |
| 5180 | Qnil, | 5181 | Qnil, |
| @@ -5290,8 +5291,8 @@ This variable is never applied to a way of decoding a file while reading it. */ | |||
| 5290 | doc: /* *Non-nil means lines in the buffer are displayed right to left. */); | 5291 | doc: /* *Non-nil means lines in the buffer are displayed right to left. */); |
| 5291 | 5292 | ||
| 5292 | DEFVAR_PER_BUFFER ("truncate-lines", ¤t_buffer->truncate_lines, Qnil, | 5293 | DEFVAR_PER_BUFFER ("truncate-lines", ¤t_buffer->truncate_lines, Qnil, |
| 5293 | doc: /* *Non-nil means do not display continuation lines; | 5294 | doc: /* *Non-nil means do not display continuation lines. |
| 5294 | give each line of text one screen line. | 5295 | Instead, give each line of text just one screen line. |
| 5295 | 5296 | ||
| 5296 | Note that this is overridden by the variable | 5297 | Note that this is overridden by the variable |
| 5297 | `truncate-partial-width-windows' if that variable is non-nil | 5298 | `truncate-partial-width-windows' if that variable is non-nil |
| @@ -5332,8 +5333,8 @@ and then abbreviated with `abbreviate-file-name'. */); | |||
| 5332 | DEFVAR_PER_BUFFER ("buffer-auto-save-file-name", | 5333 | DEFVAR_PER_BUFFER ("buffer-auto-save-file-name", |
| 5333 | ¤t_buffer->auto_save_file_name, | 5334 | ¤t_buffer->auto_save_file_name, |
| 5334 | make_number (Lisp_String), | 5335 | make_number (Lisp_String), |
| 5335 | doc: /* Name of file for auto-saving current buffer, | 5336 | doc: /* Name of file for auto-saving current buffer. |
| 5336 | or nil if buffer should not be auto-saved. */); | 5337 | If it is nil, that means don't auto-save this buffer. */); |
| 5337 | 5338 | ||
| 5338 | DEFVAR_PER_BUFFER ("buffer-read-only", ¤t_buffer->read_only, Qnil, | 5339 | DEFVAR_PER_BUFFER ("buffer-read-only", ¤t_buffer->read_only, Qnil, |
| 5339 | doc: /* Non-nil if this buffer is read-only. */); | 5340 | doc: /* Non-nil if this buffer is read-only. */); |
| @@ -5349,11 +5350,12 @@ Backing up is done before the first time the file is saved. */); | |||
| 5349 | 5350 | ||
| 5350 | DEFVAR_PER_BUFFER ("selective-display", ¤t_buffer->selective_display, | 5351 | DEFVAR_PER_BUFFER ("selective-display", ¤t_buffer->selective_display, |
| 5351 | Qnil, | 5352 | Qnil, |
| 5352 | doc: /* Non-nil enables selective display: | 5353 | doc: /* Non-nil enables selective display. |
| 5353 | Integer N as value means display only lines | 5354 | An Integer N as value means display only lines |
| 5354 | that start with less than n columns of space. | 5355 | that start with less than n columns of space. |
| 5355 | A value of t means, after a ^M, all the rest of the line is invisible. | 5356 | A value of t means that the character ^M makes itself and |
| 5356 | Then ^M's in the file are written into files as newlines. */); | 5357 | all the rest of the line invisible; also, when saving the buffer |
| 5358 | in a file, save the ^M as a newline. */); | ||
| 5357 | 5359 | ||
| 5358 | #ifndef old | 5360 | #ifndef old |
| 5359 | DEFVAR_PER_BUFFER ("selective-display-ellipses", | 5361 | DEFVAR_PER_BUFFER ("selective-display-ellipses", |