master
Connor Lane Smith 13 years ago
parent b028ec0e07
commit 2103ae2891
  1. 2
      config.mk
  2. 2
      dmenu.c

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

@ -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

Loading…
Cancel
Save