aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/simple.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 1a605d3ba18..fe17f25a9de 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -1372,8 +1372,11 @@ and it reactivates the mark."
1372 "Toggle Transient Mark mode. 1372 "Toggle Transient Mark mode.
1373With arg, turn Transient Mark mode on if arg is positive, off otherwise. 1373With arg, turn Transient Mark mode on if arg is positive, off otherwise.
1374 1374
1375In Transient Mark mode, changing the buffer \"deactivates\" the mark. 1375In Transient Mark mode, when the mark is active, the region is highlighted.
1376While the mark is active, the region is highlighted." 1376Changing the buffer \"deactivates\" the mark.
1377So do certain other operations that set the mark
1378but whose main purpose is something else--for example,
1379incremental search, \\[beginning-of-buffer], and \\[end-of-buffer]."
1377 (interactive "P") 1380 (interactive "P")
1378 (setq transient-mark-mode 1381 (setq transient-mark-mode
1379 (if (null arg) 1382 (if (null arg)