aboutsummaryrefslogtreecommitdiff
path: root/lparser.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-08-20 15:15:23 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-08-20 15:15:23 -0300
commit75620b45ae9d500a3251a0e698de98ab588d2a29 (patch)
tree1b04673fe967d3849928f3bb4d39a7e9c6155bf6 /lparser.h
parent3e88b72b8e71c0946d089a04876e7bdc61d187a9 (diff)
downloadlua-75620b45ae9d500a3251a0e698de98ab588d2a29.tar.gz
lua-75620b45ae9d500a3251a0e698de98ab588d2a29.tar.bz2
lua-75620b45ae9d500a3251a0e698de98ab588d2a29.zip
'lcode.c' can use 'checklimit', too
Diffstat (limited to 'lparser.h')
-rw-r--r--lparser.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lparser.h b/lparser.h
index 535dc9da..8a87776d 100644
--- a/lparser.h
+++ b/lparser.h
@@ -164,6 +164,8 @@ typedef struct FuncState {
164 164
165 165
166LUAI_FUNC lu_byte luaY_nvarstack (FuncState *fs); 166LUAI_FUNC lu_byte luaY_nvarstack (FuncState *fs);
167LUAI_FUNC void luaY_checklimit (FuncState *fs, int v, int l,
168 const char *what);
167LUAI_FUNC LClosure *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, 169LUAI_FUNC LClosure *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff,
168 Dyndata *dyd, const char *name, int firstchar); 170 Dyndata *dyd, const char *name, int firstchar);
169 171