diff options
author | Philipp Janda <siffiejoe@gmx.net> | 2015-09-07 19:46:22 +0200 |
---|---|---|
committer | Philipp Janda <siffiejoe@gmx.net> | 2015-09-07 19:46:22 +0200 |
commit | 5a462cd093d57797cec2e0efc0788213ab799560 (patch) | |
tree | ad0cb0a644c0957151ccf925e7e9541d2e804fd2 | |
parent | 59a1fd7d73909540f090a45f18d7ea12198511b2 (diff) | |
download | lua-compat-5.3-5a462cd093d57797cec2e0efc0788213ab799560.tar.gz lua-compat-5.3-5a462cd093d57797cec2e0efc0788213ab799560.tar.bz2 lua-compat-5.3-5a462cd093d57797cec2e0efc0788213ab799560.zip |
Fix macro for lua_stringtonumber.
-rw-r--r-- | c-api/compat-5.3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c-api/compat-5.3.h b/c-api/compat-5.3.h index 3f1cacc..c70ea33 100644 --- a/c-api/compat-5.3.h +++ b/c-api/compat-5.3.h | |||
@@ -259,7 +259,7 @@ COMPAT53_API void lua_rotate (lua_State *L, int idx, int n); | |||
259 | #define lua_seti COMPAT53_CONCAT(COMPAT53_PREFIX, _seti) | 259 | #define lua_seti COMPAT53_CONCAT(COMPAT53_PREFIX, _seti) |
260 | COMPAT53_API void lua_seti (lua_State *L, int index, lua_Integer i); | 260 | COMPAT53_API void lua_seti (lua_State *L, int index, lua_Integer i); |
261 | 261 | ||
262 | #define lua_strtonum COMPAT53_CONCAT(COMPAT53_PREFIX, _stringtonumber) | 262 | #define lua_stringtonumber COMPAT53_CONCAT(COMPAT53_PREFIX, _stringtonumber) |
263 | COMPAT53_API size_t lua_stringtonumber (lua_State *L, const char *s); | 263 | COMPAT53_API size_t lua_stringtonumber (lua_State *L, const char *s); |
264 | 264 | ||
265 | #define luaL_getmetafield(L, o, e) \ | 265 | #define luaL_getmetafield(L, o, e) \ |