Removed goto's in 'luaD_precall'

(plus a detail in lauxlib.h.)
This commit is contained in:
Roberto Ierusalimschy
2021-10-18 11:58:40 -03:00
parent 0e5071b5fb
commit 3699446aaf
2 changed files with 28 additions and 25 deletions

View File

@@ -102,7 +102,7 @@ LUALIB_API lua_State *(luaL_newstate) (void);
LUALIB_API lua_Integer (luaL_len) (lua_State *L, int idx);
LUALIB_API void luaL_addgsub (luaL_Buffer *b, const char *s,
LUALIB_API void (luaL_addgsub) (luaL_Buffer *b, const char *s,
const char *p, const char *r);
LUALIB_API const char *(luaL_gsub) (lua_State *L, const char *s,
const char *p, const char *r);