]> git.sur5r.net Git - i3/i3/commitdiff
Fix debug message in cfgparse.y (Thanks shatter)
authorMichael Stapelberg <michael@stapelberg.de>
Fri, 23 Oct 2009 20:57:35 +0000 (22:57 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Fri, 23 Oct 2009 20:57:35 +0000 (22:57 +0200)
src/cfgparse.y

index 4cb82998a15e6e45441ac71610bbb6911245acc2..e137fc0258c8d79a3a66eab82b3506a18a4c9fac 100644 (file)
@@ -407,9 +407,11 @@ screen:
 assign:
         TOKASSIGN WHITESPACE window_class WHITESPACE optional_arrow assign_target
         {
-                printf("assignment of %s to %d\n", $<string>3, $<number>6);
+                printf("assignment of %s\n", $<string>3);
 
                 struct Assignment *new = $<assignment>6;
+                printf("  to %d\n", new->workspace);
+                printf("  floating = %d\n", new->floating);
                 new->windowclass_title = strdup($<string>3);
                 TAILQ_INSERT_TAIL(&assignments, new, assignments);
         }