Browse Source

using anydot's memcpy-approach in drawtext, however it still looks awkward to me

master
Anselm R Garbe 16 years ago
parent
commit
c8eaab21b6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      dwm.c

+ 1
- 1
dwm.c View File

@ -572,7 +572,7 @@ drawtext(const char *text, ulong col[ColLast], Bool invert) {
if(!len)
return;
if(len < olen)
strncpy(&buf[MAX(0, len - 3)], "...", len);
memcpy(&buf[MAX(0, len - 3)], "...", 3);
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);


Loading…
Cancel
Save