aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-07-24 11:38:12 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-07-24 11:38:12 -0300
commit7614b17e85b00b3aaeb282011414a3e533cc9499 (patch)
treebfd89ffecdfcc716bd0f9f5671081a56a8615f9e
parent6dfdb765388da481a7020e44e7cfb253f9751699 (diff)
downloadlua-7614b17e85b00b3aaeb282011414a3e533cc9499.tar.gz
lua-7614b17e85b00b3aaeb282011414a3e533cc9499.tar.bz2
lua-7614b17e85b00b3aaeb282011414a3e533cc9499.zip
very small corrections
-rw-r--r--lua.stx4
1 files changed, 3 insertions, 1 deletions
diff --git a/lua.stx b/lua.stx
index 5982a5a7..6032b993 100644
--- a/lua.stx
+++ b/lua.stx
@@ -1,6 +1,6 @@
1%{ 1%{
2 2
3char *rcs_luastx = "$Id: lua.stx,v 3.36 1996/03/21 16:31:32 roberto Exp roberto $"; 3char *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
595expr1 : expr { adjust_functioncall($1, 1); } 596expr1 : expr { adjust_functioncall($1, 1); }
596 ; 597 ;
@@ -700,6 +701,7 @@ parlist1 : par { $$ = $1; }
700 701
701par : NAME { add_localvar($1); $$ = 0; } 702par : NAME { add_localvar($1); $$ = 0; }
702 | DOTS { $$ = 1; } 703 | DOTS { $$ = 1; }
704 ;
703 705
704fieldlist : lfieldlist 706fieldlist : lfieldlist
705 { flush_list($1/FIELDS_PER_FLUSH, $1%FIELDS_PER_FLUSH); } 707 { flush_list($1/FIELDS_PER_FLUSH, $1%FIELDS_PER_FLUSH); }