about summary refs log tree commit diff stats
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.gz
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;
146' href='#n146'>146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213