about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-02-16 16:51:27 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-02-16 16:51:27 +0100
commitc3527bea5746ac23599408a32f500381475815c4 (patch)
treead5cc56aab51aa0757408b95057deb28f91b23ad
parentde6695792a7e24c925b18c74f913f82b0a0e9148 (diff)
downloaddwm-c3527bea5746ac23599408a32f500381475815c4.tar.gz
removed useless space
-rw-r--r--event.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/event.c b/event.c
index f06fb22..e20a60a 100644
--- a/event.c
+++ b/event.c
@@ -28,7 +28,7 @@ movemouse(Client *c) {
 	XEvent ev;
 
 	ocx = nx = c->x;
-	ocy = ny =  c->y;
+	ocy = ny = c->y;
 	if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
 			None, cursor[CurMove], CurrentTime) != GrabSuccess)
 		return;
alt'>
6f5d7864 ^
d160a8e1 ^




57699011 ^



d160a8e1 ^
7b085072 ^



















7e9c6925 ^
6673e1fc ^
0487a30e ^
3076bab4 ^
0487a30e ^
7e9c6925 ^


3076bab4 ^
a55bbd06 ^
7284d503 ^

88be3dbc ^
7e9c6925 ^







7e9c6925 ^


0487a30e ^
7e9c6925 ^

88be3dbc ^
07d35c4a ^











0487a30e ^
07d35c4a ^

1848b18f ^

a55bbd06 ^

a55bbd06 ^

07d35c4a ^
0487a30e ^
b38e5819 ^
6673e1fc ^
0487a30e ^

b38e5819 ^
6673e1fc ^
7e9c6925 ^
b38e5819 ^

0487a30e ^
a55bbd06 ^
0487a30e ^
e853b94e ^
7da71d03 ^
7e9c6925 ^
0487a30e ^
a55bbd06 ^


7e9c6925 ^




88be3dbc ^
a55bbd06 ^




7e9c6925 ^
a55bbd06 ^
6f5d7864 ^
7e9c6925 ^
a55bbd06 ^
7284d503 ^
1848b18f ^
88be3dbc ^
1848b18f ^









1848b18f ^


a55bbd06 ^

a55bbd06 ^

0487a30e ^
6673e1fc ^
0487a30e ^

6673e1fc ^
7e9c6925 ^
0487a30e ^


a55bbd06 ^

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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165