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);
 }
oe 2022-02-19Enable -Wmissing-prototypesJune McEnroe 2022-02-19Fix edit.[ch] license notice additional permissionsJune McEnroe 2022-02-19Run line editing testsJune McEnroe 2022-02-18Implement new line editing "library"June McEnroe 2022-02-18Simplify cursor positioning in inputJune McEnroe 2022-02-18Fix M-f orderingJune McEnroe 2022-02-12Move sandman build to scripts/MakefileJune McEnroe 2022-02-12Use compat_readpassphrase.c on LinuxJune McEnroe 2022-02-12Copy RPP defines from oconfigureJune McEnroe