Xinqi Bao's Git
projects
/
dwm.git
/ commitdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (parent:
8b68890
)
moved MOUSEMASK into event.c (not used in other places)
author
Anselm R. Garbe <
[email protected]
>
Mon, 16 Oct 2006 14:50:03 +0000
(16:50 +0200)
committer
Anselm R. Garbe <
[email protected]
>
Mon, 16 Oct 2006 14:50:03 +0000
(16:50 +0200)
dwm.h
patch
|
blob
|
history
event.c
patch
|
blob
|
history
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)
/* 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
/* 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))
KEYS
#define CLEANMASK(mask) (mask & ~(numlockmask | LockMask))
+#define MOUSEMASK (BUTTONMASK | PointerMotionMask)
static void
movemouse(Client *c) {
static void
movemouse(Client *c) {