]> git.eshelyaron.com Git - emacs.git/commitdiff
(mouse-set-region):
authorRichard M. Stallman <rms@gnu.org>
Sun, 15 Sep 1996 02:17:49 +0000 (02:17 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 15 Sep 1996 02:17:49 +0000 (02:17 +0000)
Test for ms-windows instead of win32, and use memq.

lisp/mouse.el

index c7f333c8332ac6a85c5915628810b0f6ec253dd4..8da7095bada2903372f241785fdb7f0ddcbfb6c5 100644 (file)
@@ -401,9 +401,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
-       (eq (framep (selected-frame)) 'x)
-       (eq (framep (selected-frame)) 'pc)
-       (eq (framep (selected-frame)) 'win32)
+       (memq (framep (selected-frame)) '(x pc ms-windows))
        (sit-for 1))
     (push-mark)
     (set-mark (point))