diff options
Diffstat (limited to 'lua.stx')
-rw-r--r-- | lua.stx | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,6 @@ | |||
1 | %{ | 1 | %{ |
2 | 2 | ||
3 | char *rcs_luastx = "$Id: lua.stx,v 3.36 1996/03/21 16:31:32 roberto Exp roberto $"; | 3 | char *rcs_luastx = "$Id: lua.stx,v 3.37 1996/05/28 21:07:32 roberto Exp roberto $"; |
4 | 4 | ||
5 | #include <stdio.h> | 5 | #include <stdio.h> |
6 | #include <stdlib.h> | 6 | #include <stdlib.h> |
@@ -591,6 +591,7 @@ PrepJump : /* empty */ | |||
591 | code_byte(0); /* open space */ | 591 | code_byte(0); /* open space */ |
592 | code_word (0); | 592 | code_word (0); |
593 | } | 593 | } |
594 | ; | ||
594 | 595 | ||
595 | expr1 : expr { adjust_functioncall($1, 1); } | 596 | expr1 : expr { adjust_functioncall($1, 1); } |
596 | ; | 597 | ; |
@@ -700,6 +701,7 @@ parlist1 : par { $$ = $1; } | |||
700 | 701 | ||
701 | par : NAME { add_localvar($1); $$ = 0; } | 702 | par : NAME { add_localvar($1); $$ = 0; } |
702 | | DOTS { $$ = 1; } | 703 | | DOTS { $$ = 1; } |
704 | ; | ||
703 | 705 | ||
704 | fieldlist : lfieldlist | 706 | fieldlist : lfieldlist |
705 | { flush_list($1/FIELDS_PER_FLUSH, $1%FIELDS_PER_FLUSH); } | 707 | { flush_list($1/FIELDS_PER_FLUSH, $1%FIELDS_PER_FLUSH); } |