diff options
author | Pavel Machek <pavel@ucw.cz> | 2000-04-17 11:34:38 +0000 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2000-04-17 11:34:38 +0000 |
commit | 9c400ec9dd0ee74f1f350ead87dcd7366dbab7b1 (patch) | |
tree | 8a610e3d07c2004248bd0b247c7a7b2d9af1585d /filter/config.Y | |
parent | e3558ab14ee60c8c9792bc3ed54d9f0c3eaa8ea8 (diff) |
Int sets moved to core. It is now possible to have variable of type clist.
Diffstat (limited to 'filter/config.Y')
-rw-r--r-- | filter/config.Y | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/filter/config.Y b/filter/config.Y index 6ce89e7a..9cdc8159 100644 --- a/filter/config.Y +++ b/filter/config.Y @@ -390,6 +390,7 @@ term: case SYM_VARIABLE | T_IP: case SYM_VARIABLE | T_PATH_MASK: case SYM_VARIABLE | T_PATH: + case SYM_VARIABLE | T_CLIST: $$->code = 'C'; $$->a1.p = $1->aux2; break; @@ -423,7 +424,11 @@ term: | term '.' RESET { } | '+' EMPTY '+' { $$ = f_new_inst(); $$->code = 'E'; $$->aux = T_PATH; } + | '-' EMPTY '-' { $$ = f_new_inst(); $$->code = 'E'; $$->aux = T_CLIST; } | PREPEND '(' term ',' term ')' { $$ = f_new_inst(); $$->code = P('A','p'); $$->a1.p = $3; $$->a2.p = $5; } +/* | ADD '(' term, ',' term ')' { $$ = f_new_inst(); $$->code = P('C','a'); $$->a1.p = $3; $$->a2.p = $5; $$->aux = 'a'; } + | DELETE '(' term, ',' term ')' { $$ = f_new_inst(); $$->code = P('C','a'); $$->a1.p = $3; $$->a2.p = $5; $$->aux = 'd'; } */ + /* | term '.' LEN { $$->code = P('P','l'); } */ |