mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-14 23:23:02 +01:00
testing/toxic/prompt.c: changed execute() to ignore whitespace at end of commands
This commit is contained in:
parent
78a37829c5
commit
132576c28c
6
prompt.c
6
prompt.c
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user