aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-01-23 22:37:46 +0000
committerKarl Heuer1995-01-23 22:37:46 +0000
commit0e3a7b1492ace7a70685175c8ddb0a8207b10311 (patch)
treeb6450075df211f3addea0db12a96e30ee39de7ac
parenta7cde15c6437583166ae15f5696ed816f71e4ea3 (diff)
downloademacs-0e3a7b1492ace7a70685175c8ddb0a8207b10311.tar.gz
emacs-0e3a7b1492ace7a70685175c8ddb0a8207b10311.zip
(mark): If transient-mark-mode is nil, mark is active.
-rw-r--r--lisp/simple.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index a42ce3b35b7..8c946eb31b6 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -1341,7 +1341,7 @@ if there is no mark at all.
1341 1341
1342If you are using this in an editing command, you are most likely making 1342If you are using this in an editing command, you are most likely making
1343a mistake; see the documentation of `set-mark'." 1343a mistake; see the documentation of `set-mark'."
1344 (if (or force mark-active mark-even-if-inactive) 1344 (if (or force (not transient-mark-mode) mark-active mark-even-if-inactive)
1345 (marker-position (mark-marker)) 1345 (marker-position (mark-marker))
1346 (signal 'mark-inactive nil))) 1346 (signal 'mark-inactive nil)))
1347 1347