From 1b4297e6095fea7258f99150fb79b49a01b5519b Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 5 Feb 2023 19:47:49 -0500 Subject: Fix what went wrong, part 2 --- chat.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'chat.h') diff --git a/chat.h b/chat.h index 6a3f669..ef5779a 100644 --- a/chat.h +++ b/chat.h @@ -412,10 +412,11 @@ struct Cursor { uint gen; struct Node *node; }; -void completePush(uint id, const char *str); -void completePull(uint id, const char *str); +void completePush(uint id, const char *str, enum Color color); +void completePull(uint id, const char *str, enum Color color); void completeReplace(const char *old, const char *new); void completeRemove(uint id, const char *str); +enum Color completeColor(uint id, const char *str); const char *completePrefix(struct Cursor *curs, uint id, const char *prefix); const char *completeSubstr(struct Cursor *curs, uint id, const char *substr); uint completeNextID(struct Cursor *curs, const char *str); -- cgit 1.4.1