diff options
Diffstat (limited to 'dmenu.c')
-rw-r--r-- | dmenu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -219,7 +219,7 @@ insert(const char *str, ssize_t n) { | |||
219 | if(n > 0) | 219 | if(n > 0) |
220 | memcpy(&text[cursor], str, n); | 220 | memcpy(&text[cursor], str, n); |
221 | cursor += n; | 221 | cursor += n; |
222 | match(n > 0); | 222 | match(n > 0 && text[cursor] == '\0'); |
223 | } | 223 | } |
224 | 224 | ||
225 | void | 225 | void |