aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lparser.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lparser.c b/lparser.c
index 0eefb204..9c1007d3 100644
--- a/lparser.c
+++ b/lparser.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: $ 2** $Id: lparser.c,v 1.1 1998/05/27 13:08:34 roberto Exp roberto $
3** LL(1) Parser and code generator for Lua 3** LL(1) Parser and code generator for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -1075,6 +1075,7 @@ static int funcparams (LexState *ls, int slf) {
1075 break; 1075 break;
1076 1076
1077 case STRING: /* funcparams -> STRING */ 1077 case STRING: /* funcparams -> STRING */
1078 code_string(ls, ls->seminfo.ts);
1078 next(ls); 1079 next(ls);
1079 break; 1080 break;
1080 1081