diff options
| author | arg@suckless.org <unknown> | 2008-06-09 10:05:40 +0200 | 
|---|---|---|
| committer | arg@suckless.org <unknown> | 2008-06-09 10:05:40 +0200 | 
| commit | 077d3e435baec5faa8182aea29723663ee6ae778 (patch) | |
| tree | 8636c64355bd7fd148d23ad2b4efa0deeb9e55e0 | |
| parent | d26b60b43eb24b70b75c5fb2ec9b6f2558ca8bc2 (diff) | |
updated the for-loop with Gottox' proposal
| -rw-r--r-- | dwm.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -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); | 
