moved MOUSEMASK into event.c (not used in other places)

This commit is contained in:
Anselm R. Garbe 2006-10-16 16:50:03 +02:00
parent 8b68890650
commit d7734f996f
2 changed files with 1 additions and 1 deletions

1
dwm.h
View File

@ -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

View File

@ -18,6 +18,7 @@ typedef struct {
KEYS
#define CLEANMASK(mask) (mask & ~(numlockmask | LockMask))
#define MOUSEMASK (BUTTONMASK | PointerMotionMask)
static void
movemouse(Client *c) {