pinosaur
/
dwm.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d26b60b
)
updated the for-loop with Gottox' proposal
author
arg@suckless.org
<unknown>
Mon, 9 Jun 2008 08:05:40 +0000
(10:05 +0200)
committer
arg@suckless.org
<unknown>
Mon, 9 Jun 2008 08:05:40 +0000
(10:05 +0200)
dwm.c
patch
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index
614a7f3
..
123707c
100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-570,7
+570,7
@@
drawtext(const char *text, ulong col[ColLast], Bool invert) {
if(!len)
return;
if(len < olen)
- for(i = len; i
>= MAX(0, len - 3); buf[i--
] = '.');
+ for(i = len; i
&& i > len - 3; buf[--i
] = '.');
XSetForeground(dpy, dc.gc, col[invert ? ColBG : ColFG]);
if(dc.font.set)
XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc, x, y, buf, len);