about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-07 22:19:00 -0400
committerJune McEnroe <june@causal.agency>2018-08-07 22:19:00 -0400
commit41e7105fecdb3516a1711003ba3fccdf9d3cfd3d (patch)
tree0f72ced695ff05cd46674fb025fad9b624b85c66
parentHighlight and beep pings (diff)
downloadcatgirl-41e7105fecdb3516a1711003ba3fccdf9d3cfd3d.tar.gz
catgirl-41e7105fecdb3516a1711003ba3fccdf9d3cfd3d.zip
Remove extraneous slash from unrecognized command
-rw-r--r--input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/input.c b/input.c
index e8918c9..e4c4672 100644
--- a/input.c
+++ b/input.c
@@ -97,5 +97,5 @@ void input(char *input) {
 		COMMANDS[i].handler(input);
 		return;
 	}
-	uiFmt("/%s isn't a recognized command", command);
+	uiFmt("%s isn't a recognized command", command);
 }
d58a6f9f902ad8bf99&follow=1'>Don'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