]> Dogcows Code - chaz/openbox/blobdiff - obcl/parse.y
cleanups and such
[chaz/openbox] / obcl / parse.y
index 40a071811f8bb2d3be0e7b34d334d8650f2a2d4a..f060bcecfdb558f0f5e748a46ce9ac1345ca7419 100644 (file)
@@ -51,6 +51,7 @@ stmt: TOK_ID list ';'
         CLNode *s = g_new(CLNode,1);
         s->type = CL_LIST;
         s->u.lb.list = $2;
+        s->u.lb.block = NULL;
         s->u.lb.id = $1;
         $$ = s;
     }
@@ -68,6 +69,7 @@ stmt: TOK_ID list ';'
         CLNode *s = g_new(CLNode,1);
         s->type = CL_BLOCK;
         s->u.lb.block = $2;
+        s->u.lb.list = NULL;
         s->u.lb.id = $1;
         $$ = s;
     }
This page took 0.022875 seconds and 4 git commands to generate.