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, 6 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 532a768ba50..031f5da8e6e 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5437,7 +5437,7 @@ nil here means use current buffer's major mode. */);
5437 DEFVAR_PER_BUFFER ("fill-column", &current_buffer->fill_column, 5437 DEFVAR_PER_BUFFER ("fill-column", &current_buffer->fill_column,
5438 make_number (Lisp_Int), 5438 make_number (Lisp_Int),
5439 doc: /* *Column beyond which automatic line-wrapping should happen. 5439 doc: /* *Column beyond which automatic line-wrapping should happen.
5440Interactively, you can set this using \\[set-fill-column]. */); 5440Interactively, you can set the buffer local value using \\[set-fill-column]. */);
5441 5441
5442 DEFVAR_PER_BUFFER ("left-margin", &current_buffer->left_margin, 5442 DEFVAR_PER_BUFFER ("left-margin", &current_buffer->left_margin,
5443 make_number (Lisp_Int), 5443 make_number (Lisp_Int),
@@ -5847,7 +5847,11 @@ If the buffer has never been shown in a window, the value is nil. */);
5847 doc: /* *Non-nil means deactivate the mark when the buffer contents change. 5847 doc: /* *Non-nil means deactivate the mark when the buffer contents change.
5848Non-nil also enables highlighting of the region whenever the mark is active. 5848Non-nil also enables highlighting of the region whenever the mark is active.
5849The variable `highlight-nonselected-windows' controls whether to highlight 5849The variable `highlight-nonselected-windows' controls whether to highlight
5850all windows or just the selected window. */); 5850all windows or just the selected window.
5851
5852If the value is `lambda', that enables Transient Mark mode temporarily
5853until the next buffer modification. If a command sets the value to `only',
5854that enables Transient Mark mode for the following command only. */);
5851 Vtransient_mark_mode = Qnil; 5855 Vtransient_mark_mode = Qnil;
5852 5856
5853 DEFVAR_LISP ("inhibit-read-only", &Vinhibit_read_only, 5857 DEFVAR_LISP ("inhibit-read-only", &Vinhibit_read_only,