JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
moved MOUSEMASK into event.c (not used in other places)
authorAnselm R. Garbe <arg@10kloc.org>
Mon, 16 Oct 2006 14:50:03 +0000 (16:50 +0200)
committerAnselm R. Garbe <arg@10kloc.org>
Mon, 16 Oct 2006 14:50:03 +0000 (16:50 +0200)
dwm.h
event.c

diff --git a/dwm.h b/dwm.h
index da105b7..7cf168d 100644 (file)
--- a/dwm.h
+++ b/dwm.h
@@ -36,7 +36,6 @@
 
 /* mask shorthands, used in event.c and client.c */
 #define BUTTONMASK             (ButtonPressMask | ButtonReleaseMask)
-#define MOUSEMASK              (BUTTONMASK | PointerMotionMask)
 /* other stuff used in different places */
 #define BORDERPX               1
 #define PROTODELWIN            1
diff --git a/event.c b/event.c
index 7f040e2..42a6fc0 100644 (file)
--- a/event.c
+++ b/event.c
@@ -18,6 +18,7 @@ typedef struct {
 KEYS
 
 #define CLEANMASK(mask) (mask & ~(numlockmask | LockMask))
+#define MOUSEMASK              (BUTTONMASK | PointerMotionMask)
 
 static void
 movemouse(Client *c) {