all repos — dwm @ 077d3e435baec5faa8182aea29723663ee6ae778

my dwm build

updated the for-loop with Gottox' proposal
arg@suckless.org unknown
Mon, 09 Jun 2008 10:05:40 +0200
commit

077d3e435baec5faa8182aea29723663ee6ae778

parent

d26b60b43eb24b70b75c5fb2ec9b6f2558ca8bc2

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M dwm.cdwm.c

@@ -570,7 +570,7 @@ for(; len && (i = textnw(buf, len)) > dc.w - h; len--);

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);