diff options
author | June McEnroe <june@causal.agency> | 2018-08-07 15:43:49 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-08-07 15:46:04 -0400 |
commit | fe21b1410f3a2a0ee756a4b30dbd9ba91434cca3 (patch) | |
tree | 6d47583bd0234fb1107781a641ce666bb2fc9b61 /chat.c | |
parent | Populate tab-complete list (diff) | |
download | catgirl-fe21b1410f3a2a0ee756a4b30dbd9ba91434cca3.tar.gz catgirl-fe21b1410f3a2a0ee756a4b30dbd9ba91434cca3.zip |
Convert input to multibyte before handling
Diffstat (limited to '')
-rw-r--r-- | chat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chat.c b/chat.c index ba83907..697e39a 100644 --- a/chat.c +++ b/chat.c @@ -30,7 +30,7 @@ static void sigint(int sig) { (void)sig; - input(L"/quit"); + input("/quit"); uiHide(); exit(EX_OK); } |