1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-26 16:45:12 -04:00

[exmode] Allow spaces after semicolon. Refs #196

This commit is contained in:
Witold Filipczyk 2022-11-23 08:14:03 +01:00
parent 4d1d4f173d
commit 3c8e625956

View File

@ -132,6 +132,8 @@ try_exmode_exec(struct session *ses, const char *val)
while (1) {
char *command, *args;
while (*next && isspace((unsigned char)(*next))) next++;
command = args = next;
while (*command == ':') command++;