From: YAMAMOTO Mitsuharu Date: Tue, 18 Oct 2005 08:04:11 +0000 (+0000) Subject: (mouse-set-region): Don't do sit-for on a mac frame. X-Git-Tag: emacs-pretest-22.0.90~6522 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1405937493f3ede793a012e897f7e1527192b4da;p=emacs.git (mouse-set-region): Don't do sit-for on a mac frame. --- 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))