aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 67192b4843b..1351dac3cd7 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -6106,15 +6106,17 @@ Non-nil also enables highlighting of the region whenever the mark is active.
6106The variable `highlight-nonselected-windows' controls whether to highlight 6106The variable `highlight-nonselected-windows' controls whether to highlight
6107all windows or just the selected window. 6107all windows or just the selected window.
6108 6108
6109If the value is `lambda', that enables Transient Mark mode temporarily. 6109Lisp programs may give this variable certain special values:
6110After any subsequent action that would normally deactivate the mark 6110
6111\(such as buffer modification), Transient Mark mode is turned off. 6111- A value of `lambda' enables Transient Mark mode temporarily.
6112 6112 It is disabled again after any subsequent action that would
6113If the value is (only . OLDVAL), that enables Transient Mark mode 6113 normally deactivate the mark (e.g. buffer modification).
6114temporarily. After any subsequent point motion command that is not 6114
6115shift-translated, or any other action that would normally deactivate 6115- A value of (only . OLDVAL) enables Transient Mark mode
6116the mark (such as buffer modification), the value of 6116 temporarily. After any subsequent point motion command that is
6117`transient-mark-mode' is set to OLDVAL. */); 6117 not shift-translated, or any other action that would normally
6118 deactivate the mark (e.g. buffer modification), the value of
6119 `transient-mark-mode' is set to OLDVAL. */);
6118 Vtransient_mark_mode = Qnil; 6120 Vtransient_mark_mode = Qnil;
6119 6121
6120 DEFVAR_LISP ("inhibit-read-only", &Vinhibit_read_only, 6122 DEFVAR_LISP ("inhibit-read-only", &Vinhibit_read_only,