This commit is contained in:
Connor Lane Smith 2011-05-18 17:01:44 +01:00
parent b028ec0e07
commit 2103ae2891
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
# dmenu version
VERSION = 4.3
VERSION = 4.3.1
# paths
PREFIX = /usr/local

View File

@ -219,7 +219,7 @@ insert(const char *str, ssize_t n) {
if(n > 0)
memcpy(&text[cursor], str, n);
cursor += n;
match(n > 0);
match(n > 0 && text[cursor] == '\0');
}
void