Compare commits

...

2 Commits
4.3 ... 4.3.1

Author SHA1 Message Date
2103ae2891 bugfix 2011-05-18 17:01:44 +01:00
b028ec0e07 Added tag 4.3 for changeset 14c79f054bdf 2011-05-18 16:21:45 +01:00
3 changed files with 3 additions and 2 deletions

View File

@ -44,3 +44,4 @@ e4c81a78ffbad6ba4d1ad119cc654da6eca63a4c 3.2
72749a826cab0baa805620e44a22e54486c97a4e 4.1.1 72749a826cab0baa805620e44a22e54486c97a4e 4.1.1
379813a051f03a1b20bdbfdc2d2d1d2d794ace48 4.2 379813a051f03a1b20bdbfdc2d2d1d2d794ace48 4.2
abb6579a324fffdf6a23c2fa4c32911277da594a 4.2.1 abb6579a324fffdf6a23c2fa4c32911277da594a 4.2.1
14c79f054bdf43ff3213af8e60a783192e92a018 4.3

View File

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

View File

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