From 0e3a7b1492ace7a70685175c8ddb0a8207b10311 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Mon, 23 Jan 1995 22:37:46 +0000 Subject: [PATCH] (mark): If transient-mark-mode is nil, mark is active. --- lisp/simple.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. 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))) -- 2.39.5