summaryrefslogtreecommitdiffstats
path: root/dimension/common.rules
diff options
context:
space:
mode:
Diffstat (limited to 'dimension/common.rules')
-rw-r--r--dimension/common.rules10
1 files changed, 3 insertions, 7 deletions
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);
}
;