aboutsummaryrefslogtreecommitdiffstats
path: root/dwm.h
diff options
context:
space:
mode:
authorarg@10ksloc.org <unknown>2006-08-01 14:46:01 +0200
committerarg@10ksloc.org <unknown>2006-08-01 14:46:01 +0200
commit77f8c075c48e510e064b8f0b7b823a7e1f9f44b7 (patch)
treefb47710d61c0ecd97ec622aab8d3d9cdcd627260 /dwm.h
parent33b4821cd69ed4c0a9af58f0af96de430277a08a (diff)
downloaddwm-77f8c075c48e510e064b8f0b7b823a7e1f9f44b7.tar.zst
uppercasing all define'd values (uppercase-prefixed should only be enum field qualifiers)
Diffstat (limited to 'dwm.h')
-rw-r--r--dwm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/dwm.h b/dwm.h
index f7bebb0..f57a8ce 100644
--- a/dwm.h
+++ b/dwm.h
@@ -7,8 +7,8 @@
#include CONFIG
/* mask shorthands, used in event.c and client.c */
-#define ButtonMask (ButtonPressMask | ButtonReleaseMask)
-#define MouseMask (ButtonMask | PointerMotionMask)
+#define BUTTONMASK (ButtonPressMask | ButtonReleaseMask)
+#define MOUSEMASK (BUTTONMASK | PointerMotionMask)
typedef union Arg Arg;
typedef struct Client Client;