From 835a9bdcbd7365187954ab8a6453a2ab67008c2a Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Mon, 8 Nov 2010 02:10:35 -0500 Subject: Remove useless array node from color-lists. --- dimension/common.rules | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'dimension/common.rules') diff --git a/dimension/common.rules b/dimension/common.rules index 754e063..600ef80 100644 --- a/dimension/common.rules +++ b/dimension/common.rules @@ -575,17 +575,13 @@ PIGMENT_MODIFIERS: /* empty */ { ; COLOR_LIST2: /* empty */ { - dmnsn_astnode list = dmnsn_new_astnode(DMNSN_AST_ARRAY, @$); - $$ = dmnsn_new_astnode1(DMNSN_AST_COLOR_LIST, @$, list); + $$ = dmnsn_new_astnode(DMNSN_AST_COLOR_LIST, @$); } | COLOR { - dmnsn_astnode list = dmnsn_new_astnode1(DMNSN_AST_ARRAY, @$, $1); - $$ = dmnsn_new_astnode1(DMNSN_AST_COLOR_LIST, @$, list); + $$ = dmnsn_new_astnode1(DMNSN_AST_COLOR_LIST, @$, $1); } | COLOR "," COLOR { - dmnsn_astnode list = dmnsn_new_astnode2(DMNSN_AST_ARRAY, @$, - $1, $3); - $$ = dmnsn_new_astnode1(DMNSN_AST_COLOR_LIST, @$, list); + $$ = dmnsn_new_astnode2(DMNSN_AST_COLOR_LIST, @$, $1, $3); } ; -- cgit v1.2.3