about summary refs log tree commit diff
path: root/input.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2023-02-05 19:47:49 -0500
committerJune McEnroe <june@causal.agency>2023-02-05 19:47:49 -0500
commit1b4297e6095fea7258f99150fb79b49a01b5519b (patch)
tree3feaa576b3e001d243caa49bc20011c8791b25f6 /input.c
parentFix what went wrong, part 1 (diff)
downloadcatgirl-1b4297e6095fea7258f99150fb79b49a01b5519b.tar.gz
catgirl-1b4297e6095fea7258f99150fb79b49a01b5519b.zip
Fix what went wrong, part 2
Diffstat (limited to 'input.c')
-rw-r--r--input.c2
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);
 	}
 }