diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-07-24 11:38:12 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-07-24 11:38:12 -0300 |
commit | 7614b17e85b00b3aaeb282011414a3e533cc9499 (patch) | |
tree | bfd89ffecdfcc716bd0f9f5671081a56a8615f9e | |
parent | 6dfdb765388da481a7020e44e7cfb253f9751699 (diff) | |
download | lua-7614b17e85b00b3aaeb282011414a3e533cc9499.tar.gz lua-7614b17e85b00b3aaeb282011414a3e533cc9499.tar.bz2 lua-7614b17e85b00b3aaeb282011414a3e533cc9499.zip |
very small corrections
-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); } |