about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-09 17:49:31 -0400
committerJune McEnroe <june@causal.agency>2018-08-09 17:49:31 -0400
commitdbdf13b51abe725b37c58b8fb87b2d58b64663af (patch)
tree7021d24521c3dd7b82da83c734c0cf6af7d7100f
parentReplace shift with a great variadic function (diff)
downloadcatgirl-dbdf13b51abe725b37c58b8fb87b2d58b64663af.tar.gz
catgirl-dbdf13b51abe725b37c58b8fb87b2d58b64663af.zip
Ignore trailing space on slash commands
Diffstat (limited to '')
-rw-r--r--input.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/input.c b/input.c
index 64102e2..c342a78 100644
--- a/input.c
+++ b/input.c
@@ -109,6 +109,7 @@ void input(char *input) {
 		return;
 	}
 	char *command = strsep(&input, " ");
+	if (input && !input[0]) input = NULL;
 	for (size_t i = 0; i < COMMANDS_LEN; ++i) {
 		if (strcasecmp(command, COMMANDS[i].command)) continue;
 		COMMANDS[i].handler(input);
0'>2018-09-13Fix len for format->split at end of stringJune McEnroe 2018-09-13Avoid uninitialized x in uiReadJune McEnroe 2018-09-13Add IRCDefault to colors enumJune McEnroe 2018-09-13Return a format->split even at the end of the stringJune McEnroe 2018-09-13Fix weird tab-complete after commaJune McEnroe 2018-09-13Rewrite UI againJune McEnroe 2018-09-12Add note about C-oJune McEnroe 2018-09-12Use formatParse split to position input cursorJune McEnroe 2018-09-12Factor out IRC formatting parsingJune McEnroe 2018-09-11Add /help equivalent to /manJune McEnroe 2018-09-11Don't render every PM as a pingJune McEnroe 2018-09-11Add urlOpenMatchJune McEnroe 2018-09-10Depend on man.sh for chroot.tar targetJune McEnroe 2018-09-10Set LESSSECURE=1 in man.shJune McEnroe 2018-09-10Add /man commandJune McEnroe 2018-09-10Install man page in chrootJune McEnroe 2018-09-10Install man pageJune McEnroe 2018-09-10Split keys into subsections and document colorsJune McEnroe 2018-09-10Add "blank" lines to chatte.1June McEnroe 2018-09-10Document key bindings in chatte.1June McEnroe 2018-09-08Document slash commands in chatte.1June McEnroe