minor modification
This commit is contained in:
parent
bab59a9807
commit
4e74263ba0
1 changed files with 1 additions and 4 deletions
5
dmenu.c
5
dmenu.c
|
@ -396,10 +396,7 @@ kpress(XKeyEvent * e) {
|
|||
default:
|
||||
if(num && !iscntrl((int) buf[0])) {
|
||||
buf[num] = 0;
|
||||
if(len > 0)
|
||||
strncat(text, buf, sizeof text);
|
||||
else
|
||||
strncpy(text, buf, sizeof text);
|
||||
strncpy(text + len, buf, sizeof text - len);
|
||||
match(text);
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue