aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/commands.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 5afddc4a..eb77c172 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -1178,6 +1178,11 @@ enum cmd_status handle_command(char *_exec) {
1178 // Split commands 1178 // Split commands
1179 cmd = argsep(&cmdlist, ","); 1179 cmd = argsep(&cmdlist, ",");
1180 cmd += strspn(cmd, whitespace); 1180 cmd += strspn(cmd, whitespace);
1181 if (strcmp(cmd, "") == 0) {
1182 sway_log(L_INFO, "Ignoring empty command.");
1183 continue;
1184 }
1185
1181 sway_log(L_INFO, "Handling command '%s'", cmd); 1186 sway_log(L_INFO, "Handling command '%s'", cmd);
1182 //TODO better handling of argv 1187 //TODO better handling of argv
1183 int argc; 1188 int argc;