From 89602bf7476c6ecf04cc0e0125b9664dc15ebb08 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 15 Oct 2014 11:27:40 -0300 Subject: 'lua_strtonum' -> 'lua_stringtonum' --- lapi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lapi.c') diff --git a/lapi.c b/lapi.c index 417c3a1e..cdf21123 100644 --- a/lapi.c +++ b/lapi.c @@ -1,5 +1,5 @@ /* -** $Id: lapi.c,v 2.235 2014/08/27 14:59:33 roberto Exp roberto $ +** $Id: lapi.c,v 2.236 2014/10/07 18:29:13 roberto Exp roberto $ ** Lua API ** See Copyright Notice in lua.h */ @@ -332,7 +332,7 @@ LUA_API int lua_compare (lua_State *L, int index1, int index2, int op) { } -LUA_API size_t lua_strtonum (lua_State *L, const char *s) { +LUA_API size_t lua_stringtonum (lua_State *L, const char *s) { size_t sz = luaO_str2num(s, L->top); if (sz != 0) api_incr_top(L); -- cgit v1.2.3-55-g6feb