1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-03 16:37:45 +02:00

testing/toxic/prompt.c: changed execute() to ignore whitespace at end of commands

This commit is contained in:
ptrasd 2013-08-07 02:25:20 -04:00
parent 78a37829c5
commit 132576c28c

View File

@ -57,6 +57,12 @@ static void execute(ToxWindow *self, char *u_cmd)
leading_spc++;
memmove(cmd, cmd + leading_spc, 256 - leading_spc);
int cmd_end = strlen(cmd);
while (cmd_end > 0 && cmd_end--)
if (!isspace(cmd[cmd_end]))
break;
cmd[cmd_end + 1] = '\0';
if (!strcmp(cmd, "quit") || !strcmp(cmd, "exit") || !strcmp(cmd, "q")) {
endwin();
exit(0);