diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2021-10-18 11:58:40 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2021-10-18 11:58:40 -0300 |
commit | 3699446aaf5c7a07af028b1ae43cf52d2d4dda59 (patch) | |
tree | f21cc5d1bef65fcb55388240706571005c2c9430 /lauxlib.h | |
parent | 0e5071b5fbcc244d9f8c4bae82e327ad59bccc3f (diff) | |
download | lua-3699446aaf5c7a07af028b1ae43cf52d2d4dda59.tar.gz lua-3699446aaf5c7a07af028b1ae43cf52d2d4dda59.tar.bz2 lua-3699446aaf5c7a07af028b1ae43cf52d2d4dda59.zip |
Removed goto's in 'luaD_precall'
(plus a detail in lauxlib.h.)
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -102,7 +102,7 @@ LUALIB_API lua_State *(luaL_newstate) (void); | |||
102 | 102 | ||
103 | LUALIB_API lua_Integer (luaL_len) (lua_State *L, int idx); | 103 | LUALIB_API lua_Integer (luaL_len) (lua_State *L, int idx); |
104 | 104 | ||
105 | LUALIB_API void luaL_addgsub (luaL_Buffer *b, const char *s, | 105 | LUALIB_API void (luaL_addgsub) (luaL_Buffer *b, const char *s, |
106 | const char *p, const char *r); | 106 | const char *p, const char *r); |
107 | LUALIB_API const char *(luaL_gsub) (lua_State *L, const char *s, | 107 | LUALIB_API const char *(luaL_gsub) (lua_State *L, const char *s, |
108 | const char *p, const char *r); | 108 | const char *p, const char *r); |