diff options
Diffstat (limited to 'lparser.c')
-rw-r--r-- | lparser.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||
172 | static TString *str_checkname (LexState *ls) { | 172 | static 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 | ||