From 1405937493f3ede793a012e897f7e1527192b4da Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Tue, 18 Oct 2005 08:04:11 +0000 Subject: [PATCH] (mouse-set-region): Don't do sit-for on a mac frame. --- lisp/mouse.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/mouse.el b/lisp/mouse.el index bfbd9eb300d..d71d80bd41f 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -663,7 +663,7 @@ This should be bound to a mouse drag event." ;; If mark is highlighted, no need to bounce the cursor. ;; On X, we highlight while dragging, thus once again no need to bounce. (or transient-mark-mode - (memq (framep (selected-frame)) '(x pc w32)) + (memq (framep (selected-frame)) '(x pc w32 mac)) (sit-for 1)) (push-mark) (set-mark (point)) -- 2.39.5