aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-01-11 15:51:15 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-01-11 15:51:15 +0100
commita24a6701c8bb32c1bfa0120a692445ec85c9b5b9 (patch)
treea88bc329eb5661a8facc560f1192cb517dc9a729 /main.c
parentd108cfa7fc47000af49e70a49e865b9eb236c57d (diff)
small fix of initial numlockmask value
Diffstat (limited to 'main.c')
-rw-r--r--main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.c b/main.c
index ba5e2e0..067f383 100644
--- a/main.c
+++ b/main.c
@@ -101,6 +101,7 @@ setup(void) {
cursor[CurResize] = XCreateFontCursor(dpy, XC_sizing);
cursor[CurMove] = XCreateFontCursor(dpy, XC_fleur);
/* init modifier map */
+ numlockmask = 0;
modmap = XGetModifierMapping(dpy);
for (i = 0; i < 8; i++) {
for (j = 0; j < modmap->max_keypermod; j++) {