emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-28 2289a7a271 1/2: Fix "C-SPC C-SPC" after "C-x C-x"


From: Eli Zaretskii
Subject: emacs-28 2289a7a271 1/2: Fix "C-SPC C-SPC" after "C-x C-x"
Date: Sun, 13 Feb 2022 08:23:36 -0500 (EST)

branch: emacs-28
commit 2289a7a271a78e5e4977745e4be6ae520be611ce
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    Fix "C-SPC C-SPC" after "C-x C-x"
    
    * lisp/simple.el (exchange-point-and-mark): Fix what the command
    does when 'transient-mark-mode' is OFF.  (Bug#52896)
    
    (cherry picked from commit 19c6cad1821eb896b2ddd0f6eab030f0880ea254)
---
 lisp/simple.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/simple.el b/lisp/simple.el
index 9c17f0ea6d..2822a4a3c2 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -6652,7 +6652,7 @@ mode temporarily."
         (user-error "No mark set in this buffer"))
     (set-mark (point))
     (goto-char omark)
-    (cond (temp-highlight
+    (cond ((and (not arg) (not temp-highlight))
           (setq-local transient-mark-mode (cons 'only transient-mark-mode)))
          ((xor arg (not (region-active-p)))
           (deactivate-mark))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]