diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2022-09-02 19:09:50 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2022-09-02 19:09:50 +0200 |
commit | 1e8c5b68f4881bd4ae257c780fd41f129c79f419 (patch) | |
tree | 169f5c06333acd22a1cf6d24673d0b2b8cb79fa6 | |
parent | 528d39b011afb7ef6fd794ba6b74155d4e69bc68 (diff) |
fix a regression in the previous commit for tab complete
Reported by Santtu Lakkala <inz@inz.fi>, thanks!
-rw-r--r-- | dmenu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -519,7 +519,7 @@ insert: | |||
519 | return; | 519 | return; |
520 | cursor = strnlen(sel->text, sizeof text - 1); | 520 | cursor = strnlen(sel->text, sizeof text - 1); |
521 | memcpy(text, sel->text, cursor); | 521 | memcpy(text, sel->text, cursor); |
522 | text[sizeof text - 1] = '\0'; | 522 | text[cursor] = '\0'; |
523 | match(); | 523 | match(); |
524 | break; | 524 | break; |
525 | } | 525 | } |