Browse Source

bugfix

master
Connor Lane Smith 13 years ago
parent
commit
2103ae2891
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      config.mk
  2. +1
    -1
      dmenu.c

+ 1
- 1
config.mk View File

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


+ 1
- 1
dmenu.c 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


Loading…
Cancel
Save