From: Mattias EngdegÄrd Date: Sun, 1 Dec 2019 17:31:34 +0000 (+0100) Subject: Temporary enable transient-mark-mode for rectangle selection X-Git-Tag: emacs-27.0.90~463 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9f2145f42daab13aed5cf89fdb6a7c5579819ec0;p=emacs.git Temporary enable transient-mark-mode for rectangle selection * lisp/mouse.el (mouse-drag-region-rectangle): Enable transient-mark-mode during selection (bug#38431). --- diff --git a/lisp/mouse.el b/lisp/mouse.el index bc05a35009e..32996b2eded 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -2007,6 +2007,10 @@ This must be bound to a button-down mouse event." (setq dragged t) (mouse-minibuffer-check start-event) (deactivate-mark) + (setq-local transient-mark-mode + (if (eq transient-mark-mode 'lambda) + '(only) + (cons 'only transient-mark-mode))) (posn-set-point start-pos) (rectangle-mark-mode) ;; Only tell rectangle about the exact column if we are possibly