summaryrefslogtreecommitdiff
path: root/lparser.c
diff options
context:
space:
mode:
Diffstat (limited to 'lparser.c')
-rw-r--r--lparser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lparser.c b/lparser.c
index 5fd467b1..38bfb97e 100644
--- a/lparser.c
+++ b/lparser.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lparser.c,v 1.91 2000/05/25 18:26:42 roberto Exp roberto $ 2** $Id: lparser.c,v 1.92 2000/05/25 18:59:59 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*/
@@ -170,7 +170,7 @@ static int checkname (LexState *ls) {
170 170
171 171
172static TString *str_checkname (LexState *ls) { 172static TString *str_checkname (LexState *ls) {
173 int i = checkname(ls); /* this call may realloc `f->consts' */ 173 int i = checkname(ls); /* this call may realloc `f->kstr' */
174 return ls->fs->f->kstr[i]; 174 return ls->fs->f->kstr[i];
175} 175}
176 176