diff options
author | Mike Pall <mike> | 2020-01-13 14:28:43 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2020-01-13 14:28:43 +0100 |
commit | 820339960123dc78a7ce03edf53fcf4fdae0e55d (patch) | |
tree | 5be584eb5d8cf65ce8d48a0e43d97f3f2b72d873 /src/lj_lex.h | |
parent | 45a7e5073ce0a59465fef0b80bb08bd4e76b7979 (diff) | |
download | luajit-820339960123dc78a7ce03edf53fcf4fdae0e55d.tar.gz luajit-820339960123dc78a7ce03edf53fcf4fdae0e55d.tar.bz2 luajit-820339960123dc78a7ce03edf53fcf4fdae0e55d.zip |
Fix embedded bytecode loader.
Diffstat (limited to 'src/lj_lex.h')
-rw-r--r-- | src/lj_lex.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_lex.h b/src/lj_lex.h index 41c03f93..f2346593 100644 --- a/src/lj_lex.h +++ b/src/lj_lex.h | |||
@@ -72,6 +72,7 @@ typedef struct LexState { | |||
72 | BCInsLine *bcstack; /* Stack for bytecode instructions/line numbers. */ | 72 | BCInsLine *bcstack; /* Stack for bytecode instructions/line numbers. */ |
73 | MSize sizebcstack; /* Size of bytecode stack. */ | 73 | MSize sizebcstack; /* Size of bytecode stack. */ |
74 | uint32_t level; /* Syntactical nesting level. */ | 74 | uint32_t level; /* Syntactical nesting level. */ |
75 | int endmark; /* Trust bytecode end marker, even if not at EOF. */ | ||
75 | } LexState; | 76 | } LexState; |
76 | 77 | ||
77 | LJ_FUNC int lj_lex_setup(lua_State *L, LexState *ls); | 78 | LJ_FUNC int lj_lex_setup(lua_State *L, LexState *ls); |