소스 검색

final version -- Gottox verified it using the test driver

arg@suckless.org 17 년 전
부모
커밋
98e7950be8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      dwm.c

+ 1 - 1
dwm.c

@@ -571,7 +571,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);