This website works better with JavaScript.
Home
Explore
Help
Sign In
gmarx
/
dwm-macbookair
mirror of
https://github.com/gmarxcc/dwm-macbookair
Watch
1
Star
1
Fork
0
Code
Issues
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
doing it in a shorter way
main
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