aboutsummaryrefslogtreecommitdiff
path: root/sway/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands.c')
-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) {
// Split commands
cmd = argsep(&cmdlist, ",");
cmd += strspn(cmd, whitespace);
+ if (strcmp(cmd, "") == 0) {
+ sway_log(L_INFO, "Ignoring empty command.");
+ continue;
+ }
+
sway_log(L_INFO, "Handling command '%s'", cmd);
//TODO better handling of argv
int argc;