summaryrefslogtreecommitdiff
path: root/src/lj_parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_parse.c')
-rw-r--r--src/lj_parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_parse.c b/src/lj_parse.c
index 3bef225a..31a70d38 100644
--- a/src/lj_parse.c
+++ b/src/lj_parse.c
@@ -1228,7 +1228,7 @@ static void fs_init(LexState *ls, FuncState *fs)
1228 fs->flags = 0; 1228 fs->flags = 0;
1229 fs->framesize = 2; /* Minimum frame size. */ 1229 fs->framesize = 2; /* Minimum frame size. */
1230 fs->kt = lj_tab_new(L, 0, 0); 1230 fs->kt = lj_tab_new(L, 0, 0);
1231 /* Anchor table of constants and prototype (to avoid being collected). */ 1231 /* Anchor table of constants in stack to avoid being collected. */
1232 settabV(L, L->top, fs->kt); 1232 settabV(L, L->top, fs->kt);
1233 incr_top(L); 1233 incr_top(L);
1234} 1234}