From 3699446aaf5c7a07af028b1ae43cf52d2d4dda59 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 18 Oct 2021 11:58:40 -0300 Subject: Removed goto's in 'luaD_precall' (plus a detail in lauxlib.h.) --- lauxlib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lauxlib.h') diff --git a/lauxlib.h b/lauxlib.h index 6f9695e8..5b977e2a 100644 --- a/lauxlib.h +++ b/lauxlib.h @@ -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); -- cgit v1.2.3-55-g6feb