diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-08-20 15:15:23 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-08-20 15:15:23 -0300 |
commit | 75620b45ae9d500a3251a0e698de98ab588d2a29 (patch) | |
tree | 1b04673fe967d3849928f3bb4d39a7e9c6155bf6 /lparser.h | |
parent | 3e88b72b8e71c0946d089a04876e7bdc61d187a9 (diff) | |
download | lua-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.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -164,6 +164,8 @@ typedef struct FuncState { | |||
164 | 164 | ||
165 | 165 | ||
166 | LUAI_FUNC lu_byte luaY_nvarstack (FuncState *fs); | 166 | LUAI_FUNC lu_byte luaY_nvarstack (FuncState *fs); |
167 | LUAI_FUNC void luaY_checklimit (FuncState *fs, int v, int l, | ||
168 | const char *what); | ||
167 | LUAI_FUNC LClosure *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, | 169 | LUAI_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 | ||