From 33a3543461e21301aad2b648b8ce67d3cfaed773 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Mon, 5 Jun 1995 17:36:29 +0000 Subject: [PATCH 1/1] (mouse-set-region): Don't bounce the cursor on X. mouse-drag-region takes care of showing it, sufficiently. --- lisp/mouse.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lisp/mouse.el b/lisp/mouse.el index d589ae48fc..bdaf3c2896 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -315,8 +315,9 @@ This should be bound to a mouse drag event." (if (numberp (posn-point posn)) (goto-char (posn-point posn))) ;; If mark is highlighted, no need to bounce the cursor. - (or (and transient-mark-mode - (framep (selected-frame))) + ;; On X, we highlight while dragging, thus once again no need to bounce. + (or transient-mark-mode + (eq (framep (selected-frame)) 'x) (sit-for 1)) (push-mark) (set-mark (point)) -- 2.20.1