fix a regression in the previous commit for tab complete - dmenu - dynamic menu
 (HTM) git clone git://git.suckless.org/dmenu
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 1e8c5b68f4881bd4ae257c780fd41f129c79f419
 (DIR) parent 528d39b011afb7ef6fd794ba6b74155d4e69bc68
 (HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Fri,  2 Sep 2022 19:09:50 +0200
       
       fix a regression in the previous commit for tab complete
       
       Reported by Santtu Lakkala <inz@inz.fi>, thanks!
       
       Diffstat:
         M dmenu.c                             |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/dmenu.c b/dmenu.c
       @@ -519,7 +519,7 @@ insert:
                                return;
                        cursor = strnlen(sel->text, sizeof text - 1);
                        memcpy(text, sel->text, cursor);
       -                text[sizeof text - 1] = '\0';
       +                text[cursor] = '\0';
                        match();
                        break;
                }