diff options
| author | Anselm R. Garbe <arg@suckless.org> | 2007-01-11 15:51:15 +0100 | 
|---|---|---|
| committer | Anselm R. Garbe <arg@suckless.org> | 2007-01-11 15:51:15 +0100 | 
| commit | a24a6701c8bb32c1bfa0120a692445ec85c9b5b9 (patch) | |
| tree | a88bc329eb5661a8facc560f1192cb517dc9a729 | |
| parent | d108cfa7fc47000af49e70a49e865b9eb236c57d (diff) | |
| download | dwm-a24a6701c8bb32c1bfa0120a692445ec85c9b5b9.tar.gz | |
small fix of initial numlockmask value
| -rw-r--r-- | main.c | 1 | 
1 files changed, 1 insertions, 0 deletions
@@ -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++) {  |