commit da94130160cc48f8e453cf415641da989732e8d0
parent 468fbdbde749d5fe221adebf115f9594067b8da4
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Wed, 24 Jun 1998 11:47:54 -0300
stupid bug (in syntax print "hello")
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lparser.c b/lparser.c
@@ -1,5 +1,5 @@
/*
-** $Id: $
+** $Id: lparser.c,v 1.1 1998/05/27 13:08:34 roberto Exp roberto $
** LL(1) Parser and code generator for Lua
** See Copyright Notice in lua.h
*/
@@ -1075,6 +1075,7 @@ static int funcparams (LexState *ls, int slf) {
break;
case STRING: /* funcparams -> STRING */
+ code_string(ls, ls->seminfo.ts);
next(ls);
break;