all repos — dmenu @ b95e61c9b7310deb452a5dfe404cc1a8f9930117

my build of dmenu

removed the i = textnw... as remarked by Martin Hurton
Anselm R Garbe garbeam@gmail.com
Mon, 18 Aug 2008 10:17:15 +0100
commit

b95e61c9b7310deb452a5dfe404cc1a8f9930117

parent

cf7e4c15a97fa4e0921985d8e31bf9d6d4414b9a

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

jump to
M dmenu.cdmenu.c

@@ -226,7 +226,7 @@ h = dc.font.ascent + dc.font.descent;

y = dc.y + (dc.h / 2) - (h / 2) + dc.font.ascent; x = dc.x + (h / 2); /* shorten text if necessary */ - for(len = MIN(olen, sizeof buf); len && (i = textnw(buf, len)) > dc.w - h; len--); + for(len = MIN(olen, sizeof buf); len && textnw(buf, len) > dc.w - h; len--); if(!len) return; memcpy(buf, text, len);