diff options
author | Pavel Machek <pavel@ucw.cz> | 1999-11-24 12:04:32 +0000 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 1999-11-24 12:04:32 +0000 |
commit | 48f9e0195488db0a515e4e5140d402fe4fe7d927 (patch) | |
tree | 16cc778a08b5fd3dcc2e7f21cfa69f741764208f /filter/config.Y | |
parent | 99bbd23b229419403f673c626001eb0f35cc3a4e (diff) |
Filters: write access to dynamic attributes should actually work. It
would be nice to find method of testing such beasts.
Diffstat (limited to 'filter/config.Y')
-rw-r--r-- | filter/config.Y | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/filter/config.Y b/filter/config.Y index a24b1575..aaea74f7 100644 --- a/filter/config.Y +++ b/filter/config.Y @@ -364,7 +364,9 @@ cmd: } | UNSET '(' RTA '.' any_dynamic ')' ';' { $$ = $5; - $$->code = 'eD'; + $$->aux = T_VOID; + $$->code = 'eS'; + $$->a1.p = NULL; } | break_command print_list ';' { $$ = f_new_inst(); $$->code = 'p,'; $$->a1.p = $2; $$->a2.i = $1; } | SYM '(' var_list ')' ';' { |