]> git.eshelyaron.com Git - emacs.git/commitdiff
(mark): If transient-mark-mode is nil, mark is active.
authorKarl Heuer <kwzh@gnu.org>
Mon, 23 Jan 1995 22:37:46 +0000 (22:37 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 23 Jan 1995 22:37:46 +0000 (22:37 +0000)
lisp/simple.el

index a42ce3b35b7580e598ed5613138158c91e9bdb8d..8c946eb31b64efd9c1394cd555e2281a27b24572 100644 (file)
@@ -1341,7 +1341,7 @@ if there is no mark at all.
 
 If you are using this in an editing command, you are most likely making
 a mistake; see the documentation of `set-mark'."
-  (if (or force mark-active mark-even-if-inactive)
+  (if (or force (not transient-mark-mode) mark-active mark-even-if-inactive)
       (marker-position (mark-marker))
     (signal 'mark-inactive nil)))