diff options
-rw-r--r-- | lparser.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lparser.c,v 2.68 2009/09/30 15:38:37 roberto Exp roberto $ | 2 | ** $Id: lparser.c,v 2.69 2009/10/11 20:02:19 roberto Exp roberto $ |
3 | ** Lua Parser | 3 | ** Lua Parser |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -1209,8 +1209,6 @@ static void localfunc (LexState *ls) { | |||
1209 | adjustlocalvars(ls, 1); | 1209 | adjustlocalvars(ls, 1); |
1210 | body(ls, &b, 0, ls->linenumber); | 1210 | body(ls, &b, 0, ls->linenumber); |
1211 | luaK_storevar(fs, &v, &b); | 1211 | luaK_storevar(fs, &v, &b); |
1212 | /* debug information will only see the variable after this point! */ | ||
1213 | getlocvar(fs, fs->nactvar - 1)->startpc = fs->pc; | ||
1214 | } | 1212 | } |
1215 | 1213 | ||
1216 | 1214 | ||