From 6ad3aabd35e7c90b473778ccdea74f6d823fd6f2 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 3 Aug 2011 17:03:11 -0400 Subject: [PATCH] parse filters and actionlists inside an action list correctly --- openbox/action_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbox/action_parser.c b/openbox/action_parser.c index 2b328cd1..58094936 100644 --- a/openbox/action_parser.c +++ b/openbox/action_parser.c @@ -174,7 +174,7 @@ ObActionList* parse_list(ObActionParser *p, GTokenType end, gboolean *e) else if (t == ';') { g_scanner_get_next_token(p->scan); /* separator */ } - else if (t == G_TOKEN_IDENTIFIER) { + else if (t == G_TOKEN_IDENTIFIER || t == '[' || t == '{') { ObActionList *next; /* parse the next action and stick it on the end of the list */ -- 2.39.2