aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 70630de53cb..833eb843168 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5457,17 +5457,17 @@ Use the command `abbrev-mode' to change this variable. */);
5457 doc: /* Non-nil if searches and matches should ignore case. */); 5457 doc: /* Non-nil if searches and matches should ignore case. */);
5458 5458
5459 DEFVAR_PER_BUFFER ("fill-column", &BVAR (current_buffer, fill_column), 5459 DEFVAR_PER_BUFFER ("fill-column", &BVAR (current_buffer, fill_column),
5460 make_number (LISP_INT_TAG), 5460 make_number (Lisp_Int0),
5461 doc: /* Column beyond which automatic line-wrapping should happen. 5461 doc: /* Column beyond which automatic line-wrapping should happen.
5462Interactively, you can set the buffer local value using \\[set-fill-column]. */); 5462Interactively, you can set the buffer local value using \\[set-fill-column]. */);
5463 5463
5464 DEFVAR_PER_BUFFER ("left-margin", &BVAR (current_buffer, left_margin), 5464 DEFVAR_PER_BUFFER ("left-margin", &BVAR (current_buffer, left_margin),
5465 make_number (LISP_INT_TAG), 5465 make_number (Lisp_Int0),
5466 doc: /* Column for the default `indent-line-function' to indent to. 5466 doc: /* Column for the default `indent-line-function' to indent to.
5467Linefeed indents to this column in Fundamental mode. */); 5467Linefeed indents to this column in Fundamental mode. */);
5468 5468
5469 DEFVAR_PER_BUFFER ("tab-width", &BVAR (current_buffer, tab_width), 5469 DEFVAR_PER_BUFFER ("tab-width", &BVAR (current_buffer, tab_width),
5470 make_number (LISP_INT_TAG), 5470 make_number (Lisp_Int0),
5471 doc: /* Distance between tab stops (for display of tab characters), in columns. 5471 doc: /* Distance between tab stops (for display of tab characters), in columns.
5472This should be an integer greater than zero. */); 5472This should be an integer greater than zero. */);
5473 5473
@@ -5588,7 +5588,7 @@ If it is nil, that means don't auto-save this buffer. */);
5588Backing up is done before the first time the file is saved. */); 5588Backing up is done before the first time the file is saved. */);
5589 5589
5590 DEFVAR_PER_BUFFER ("buffer-saved-size", &BVAR (current_buffer, save_length), 5590 DEFVAR_PER_BUFFER ("buffer-saved-size", &BVAR (current_buffer, save_length),
5591 make_number (LISP_INT_TAG), 5591 make_number (Lisp_Int0),
5592 doc: /* Length of current buffer when last read in, saved or auto-saved. 5592 doc: /* Length of current buffer when last read in, saved or auto-saved.
55930 initially. 55930 initially.
5594-1 means auto-saving turned off until next real save. 5594-1 means auto-saving turned off until next real save.