moved MOUSEMASK into event.c (not used in other places)
authorAnselm R. Garbe <arg@10kloc.org>
Mon, 16 Oct 2006 16:50:03 +0200
changeset 538 00ccae001069
parent 537 1e0a3b974036
child 539 a0858b5cdec6
moved MOUSEMASK into event.c (not used in other places)
dwm.h
event.c
--- a/dwm.h	Sat Oct 14 18:21:39 2006 +0200
+++ b/dwm.h	Mon Oct 16 16:50:03 2006 +0200
@@ -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
--- a/event.c	Sat Oct 14 18:21:39 2006 +0200
+++ b/event.c	Mon Oct 16 16:50:03 2006 +0200
@@ -18,6 +18,7 @@
 KEYS
 
 #define CLEANMASK(mask) (mask & ~(numlockmask | LockMask))
+#define MOUSEMASK		(BUTTONMASK | PointerMotionMask)
 
 static void
 movemouse(Client *c) {