projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c26e22c
)
using anydot's memcpy-approach in drawtext, however it still looks awkward to me
author
Anselm R Garbe
<garbeam@gmail.com>
Sun, 1 Jun 2008 16:41:15 +0000
(17:41 +0100)
committer
Anselm R Garbe
<garbeam@gmail.com>
Sun, 1 Jun 2008 16:41:15 +0000
(17:41 +0100)
dwm.c
patch
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index 3b6efaaa4f80121ea19800923ebdef07b911c410..90ce40d41755738453e0410e1a6938b5d6f01f77 100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-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);