aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 5359c7cf69c..c4e90363c6a 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -4573,7 +4573,7 @@ buffer_slot_type_mismatch (newval, type)
4573 4573
4574 switch (type) 4574 switch (type)
4575 { 4575 {
4576 case Lisp_Int: predicate = Qintegerp; break; 4576 case_Lisp_Int: predicate = Qintegerp; break;
4577 case Lisp_String: predicate = Qstringp; break; 4577 case Lisp_String: predicate = Qstringp; break;
4578 case Lisp_Symbol: predicate = Qsymbolp; break; 4578 case Lisp_Symbol: predicate = Qsymbolp; break;
4579 default: abort (); 4579 default: abort ();
@@ -5738,17 +5738,17 @@ Format with `format-mode-line' to produce a string value. */);
5738 doc: /* *Non-nil if searches and matches should ignore case. */); 5738 doc: /* *Non-nil if searches and matches should ignore case. */);
5739 5739
5740 DEFVAR_PER_BUFFER ("fill-column", &current_buffer->fill_column, 5740 DEFVAR_PER_BUFFER ("fill-column", &current_buffer->fill_column,
5741 make_number (Lisp_Int), 5741 make_number (LISP_INT_TAG),
5742 doc: /* *Column beyond which automatic line-wrapping should happen. 5742 doc: /* *Column beyond which automatic line-wrapping should happen.
5743Interactively, you can set the buffer local value using \\[set-fill-column]. */); 5743Interactively, you can set the buffer local value using \\[set-fill-column]. */);
5744 5744
5745 DEFVAR_PER_BUFFER ("left-margin", &current_buffer->left_margin, 5745 DEFVAR_PER_BUFFER ("left-margin", &current_buffer->left_margin,
5746 make_number (Lisp_Int), 5746 make_number (LISP_INT_TAG),
5747 doc: /* *Column for the default `indent-line-function' to indent to. 5747 doc: /* *Column for the default `indent-line-function' to indent to.
5748Linefeed indents to this column in Fundamental mode. */); 5748Linefeed indents to this column in Fundamental mode. */);
5749 5749
5750 DEFVAR_PER_BUFFER ("tab-width", &current_buffer->tab_width, 5750 DEFVAR_PER_BUFFER ("tab-width", &current_buffer->tab_width,
5751 make_number (Lisp_Int), 5751 make_number (LISP_INT_TAG),
5752 doc: /* *Distance between tab stops (for display of tab characters), in columns. */); 5752 doc: /* *Distance between tab stops (for display of tab characters), in columns. */);
5753 5753
5754 DEFVAR_PER_BUFFER ("ctl-arrow", &current_buffer->ctl_arrow, Qnil, 5754 DEFVAR_PER_BUFFER ("ctl-arrow", &current_buffer->ctl_arrow, Qnil,
@@ -5859,7 +5859,7 @@ If it is nil, that means don't auto-save this buffer. */);
5859Backing up is done before the first time the file is saved. */); 5859Backing up is done before the first time the file is saved. */);
5860 5860
5861 DEFVAR_PER_BUFFER ("buffer-saved-size", &current_buffer->save_length, 5861 DEFVAR_PER_BUFFER ("buffer-saved-size", &current_buffer->save_length,
5862 make_number (Lisp_Int), 5862 make_number (LISP_INT_TAG),
5863 doc: /* Length of current buffer when last read in, saved or auto-saved. 5863 doc: /* Length of current buffer when last read in, saved or auto-saved.
58640 initially. 58640 initially.
5865-1 means auto-saving turned off until next real save. 5865-1 means auto-saving turned off until next real save.