This website works better with JavaScript.
Home
Explore
Help
Sign In
Linux
/
dwm
generated from
gmarx/git-template
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
doing it in a shorter way
config
Anselm R. Garbe
17 years ago
parent
0e98090d65
commit
260a55ef62
1 changed files
with
1 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-3
dwm.c
+ 1
- 3
dwm.c
View File
@ -1321,10 +1321,8 @@ run(void) {
*
p
=
'
\0
'
;
offset
=
0
;
}
else
if
(
offset
+
r
<
len
-
1
)
offset
+
=
r
;
else
offset
=
0
;
offset
=
(
offset
+
r
<
len
-
1
)
?
offset
+
r
:
0
;
}
drawbar
(
)
;
}
Write
Preview
Loading…
Cancel
Save