]> git.sur5r.net Git - i3/i3/commitdiff
Merge pull request #2037 from Airblader/bug-run-assignments
authorMichael Stapelberg <stapelberg@users.noreply.github.com>
Sun, 25 Oct 2015 15:48:32 +0000 (16:48 +0100)
committerMichael Stapelberg <stapelberg@users.noreply.github.com>
Sun, 25 Oct 2015 15:48:32 +0000 (16:48 +0100)
Fix assignments bug and a small logging bug

src/assignments.c

index babe890e9250c439419b45278405d9d6e0a8ed93..6c563357d14c5adb6fabd100a0230d4f7bf565f4 100644 (file)
@@ -40,6 +40,13 @@ void run_assignments(i3Window *window) {
         if (skip)
             continue;
 
+        /* Store that we ran this assignment to not execute it again. We have
+         * to do this before running the actual command to prevent infinite
+         * loops. */
+        window->nr_assignments++;
+        window->ran_assignments = srealloc(window->ran_assignments, sizeof(Assignment *) * window->nr_assignments);
+        window->ran_assignments[window->nr_assignments - 1] = current;
+
         DLOG("matching assignment, would do:\n");
         if (current->type == A_COMMAND) {
             DLOG("execute command %s\n", current->dest.command);
@@ -53,11 +60,6 @@ void run_assignments(i3Window *window) {
 
             command_result_free(result);
         }
-
-        /* Store that we ran this assignment to not execute it again */
-        window->nr_assignments++;
-        window->ran_assignments = srealloc(window->ran_assignments, sizeof(Assignment *) * window->nr_assignments);
-        window->ran_assignments[window->nr_assignments - 1] = current;
     }
 
     /* If any of the commands required re-rendering, we will do that now. */
@@ -76,7 +78,7 @@ Assignment *assignment_for(i3Window *window, int type) {
         if ((type != A_ANY && (assignment->type & type) == 0) ||
             !match_matches_window(&(assignment->match), window))
             continue;
-        DLOG("got a matching assignment (to %s)\n", assignment->dest.workspace);
+        DLOG("got a matching assignment\n");
         return assignment;
     }