about summary refs log tree commit diff stats
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)
downloaddwm-a24a6701c8bb32c1bfa0120a692445ec85c9b5b9.tar.gz
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++) {
Agaram <vc@akkartik.com> 2016-12-12 10:07:59 -0800 3707' href='/akkartik/mu/commit/vimrc.vim?h=main&id=49620728e805a3bbc3477c14b8b6ef7e2b5d3ead'>49620728 ^
b96af395 ^

94fa5c95 ^
9a81d746 ^
3e1349d2 ^





1ae4e0d9 ^
3e1349d2 ^





b3cdcdd4 ^
a9817844 ^



b96af395 ^






1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53