# HG changeset patch # User Anselm R. Garbe # Date 1161010203 -7200 # Node ID 00ccae0010692975f147b05b940f794b650e50b5 # Parent 1e0a3b974036c5215a5886c34c4fbb7728b66f13 moved MOUSEMASK into event.c (not used in other places) diff -r 1e0a3b974036 -r 00ccae001069 dwm.h --- 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 diff -r 1e0a3b974036 -r 00ccae001069 event.c --- 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) {