Merge pull request #196 from sce/catch_empty_command

commands: Gracefully handle empty commands.
master
Drew DeVault 9 years ago
commit aef3191022

@ -1178,6 +1178,11 @@ enum cmd_status handle_command(char *_exec) {
// Split commands // Split commands
cmd = argsep(&cmdlist, ","); cmd = argsep(&cmdlist, ",");
cmd += strspn(cmd, whitespace); cmd += strspn(cmd, whitespace);
if (strcmp(cmd, "") == 0) {
sway_log(L_INFO, "Ignoring empty command.");
continue;
}
sway_log(L_INFO, "Handling command '%s'", cmd); sway_log(L_INFO, "Handling command '%s'", cmd);
//TODO better handling of argv //TODO better handling of argv
int argc; int argc;

Loading…
Cancel
Save