diff options
Diffstat (limited to 'testing/toxic/prompt.c')
-rw-r--r-- | testing/toxic/prompt.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testing/toxic/prompt.c b/testing/toxic/prompt.c index 89c87d8f..c4d7d2f1 100644 --- a/testing/toxic/prompt.c +++ b/testing/toxic/prompt.c | |||
@@ -52,6 +52,13 @@ static void execute(ToxWindow *self, char *u_cmd) | |||
52 | cmd[i - newlines] = u_cmd[i]; | 52 | cmd[i - newlines] = u_cmd[i]; |
53 | } | 53 | } |
54 | 54 | ||
55 | if (cmd[0] == '/') { | ||
56 | int i; | ||
57 | for (i = i1; i < strlen(cmd); i++) { //This doesn't work when it doesn't end with a space and another word | ||
58 | cmd[i - 1] = cmd[i]; //Still working on why | ||
59 | } | ||
60 | } | ||
61 | |||
55 | if (!strcmp(cmd, "quit") || !strcmp(cmd, "exit") || !strcmp(cmd, "q")) { | 62 | if (!strcmp(cmd, "quit") || !strcmp(cmd, "exit") || !strcmp(cmd, "q")) { |
56 | endwin(); | 63 | endwin(); |
57 | exit(0); | 64 | exit(0); |