diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1995-11-07 07:47:47 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1995-11-07 07:47:47 +0000 |
commit | e6cfd898cab1aa5fc094521d1cab900fcefaf546 (patch) | |
tree | 5818d47f7eeb47ab3de59f91b05fdd9cae59d48a | |
parent | b515f2d082ce9c00c40b98bb08bfeb9eb775cf7d (diff) | |
download | emacs-e6cfd898cab1aa5fc094521d1cab900fcefaf546.tar.gz |
mouse.el [win32] (mouse-set-region):
Test for 'win32 window system as well as 'x.
-rw-r--r-- | lisp/mouse.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el index 2e50a44f676..98711f4e767 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -402,6 +402,7 @@ This should be bound to a mouse drag event." (or transient-mark-mode (eq (framep (selected-frame)) 'x) (eq (framep (selected-frame)) 'pc) + (eq (framep (selected-frame)) 'win32) (sit-for 1)) (push-mark) (set-mark (point)) |