# HG changeset patch # User YAMAMOTO Mitsuharu # Date 1129622651 0 # Node ID c80a3a047c836b90801e8675e141bff853dcc237 # Parent 6c8bcb760760449f808b8a75b9b8858024c6cbcc (mouse-set-region): Don't do sit-for on a mac frame. diff -r 6c8bcb760760 -r c80a3a047c83 lisp/mouse.el --- a/lisp/mouse.el Tue Oct 18 08:01:51 2005 +0000 +++ b/lisp/mouse.el Tue Oct 18 08:04:11 2005 +0000 @@ -663,7 +663,7 @@ ;; 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))