diff options
author | June McEnroe <june@causal.agency> | 2023-02-05 19:47:49 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2023-02-05 19:47:49 -0500 |
commit | 1b4297e6095fea7258f99150fb79b49a01b5519b (patch) | |
tree | 3feaa576b3e001d243caa49bc20011c8791b25f6 /input.c | |
parent | Fix what went wrong, part 1 (diff) | |
download | catgirl-1b4297e6095fea7258f99150fb79b49a01b5519b.tar.gz catgirl-1b4297e6095fea7258f99150fb79b49a01b5519b.zip |
Fix what went wrong, part 2
Diffstat (limited to 'input.c')
-rw-r--r-- | input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/input.c b/input.c index b11fc22..6b33b93 100644 --- a/input.c +++ b/input.c @@ -266,7 +266,7 @@ void inputCompletion(void) { for (size_t i = 0; i < ARRAY_LEN(Macros); ++i) { size_t n = wcstombs(mbs, Macros[i].name, sizeof(mbs)); assert(n != (size_t)-1); - completePush(None, mbs); + completePush(None, mbs, Default); } } |