aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2001-11-14 00:06:50 +0000
committerRichard M. Stallman2001-11-14 00:06:50 +0000
commit7614d7628796659848496e8dc0c30a532cc2b779 (patch)
treeeafe5785e90c963340bb10c4d435ec90e01ce4cf /src
parent75205970130b2737f72b75c5022ae511fbbde035 (diff)
downloademacs-7614d7628796659848496e8dc0c30a532cc2b779.tar.gz
emacs-7614d7628796659848496e8dc0c30a532cc2b779.zip
(syms_of_buffer): Doc fixes.
Diffstat (limited to 'src')
-rw-r--r--src/buffer.c36
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'.
5164don't override it. This is the same as (default-value 5164This value applies in buffers that don't have their own local values.
5165'scroll-up-aggressively). */); 5165This 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'.
5170don't override it. This is the same as (default-value 5170This value applies in buffers that don't have their own local values.
5171'scroll-down-aggressively). */); 5171This 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 &current_buffer->header_line_format, 5174 &current_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.
5177displayed at the top of a window. */); 5177The header line appears, optionally, at the top of a window;
5178the mode line appears at the bottom. */);
5178 5179
5179 DEFVAR_PER_BUFFER ("mode-line-format", &current_buffer->mode_line_format, 5180 DEFVAR_PER_BUFFER ("mode-line-format", &current_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", &current_buffer->truncate_lines, Qnil, 5293 DEFVAR_PER_BUFFER ("truncate-lines", &current_buffer->truncate_lines, Qnil,
5293 doc: /* *Non-nil means do not display continuation lines; 5294 doc: /* *Non-nil means do not display continuation lines.
5294give each line of text one screen line. 5295Instead, give each line of text just one screen line.
5295 5296
5296Note that this is overridden by the variable 5297Note 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 &current_buffer->auto_save_file_name, 5334 &current_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.
5336or nil if buffer should not be auto-saved. */); 5337If it is nil, that means don't auto-save this buffer. */);
5337 5338
5338 DEFVAR_PER_BUFFER ("buffer-read-only", &current_buffer->read_only, Qnil, 5339 DEFVAR_PER_BUFFER ("buffer-read-only", &current_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", &current_buffer->selective_display, 5351 DEFVAR_PER_BUFFER ("selective-display", &current_buffer->selective_display,
5351 Qnil, 5352 Qnil,
5352 doc: /* Non-nil enables selective display: 5353 doc: /* Non-nil enables selective display.
5353Integer N as value means display only lines 5354An Integer N as value means display only lines
5354 that start with less than n columns of space. 5355that start with less than n columns of space.
5355A value of t means, after a ^M, all the rest of the line is invisible. 5356A value of t means that the character ^M makes itself and
5356 Then ^M's in the file are written into files as newlines. */); 5357all the rest of the line invisible; also, when saving the buffer
5358in 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",