summaryrefslogtreecommitdiff
path: root/lisp/mouse.el
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>2005-10-18 08:04:11 +0000
committerYAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>2005-10-18 08:04:11 +0000
commit1405937493f3ede793a012e897f7e1527192b4da (patch)
tree3db83dc3aca81e4843ad10e4e3fb07bca90d34e6 /lisp/mouse.el
parentbe245005ca9eeed114f18572ab64526bbe5bc66c (diff)
downloademacs-1405937493f3ede793a012e897f7e1527192b4da.tar.gz
(mouse-set-region): Don't do sit-for on a mac frame.
Diffstat (limited to 'lisp/mouse.el')
-rw-r--r--lisp/mouse.el2
1 files changed, 1 insertions, 1 deletions
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))