From b66fedadaef9b6adcdc531d96eb0c4e54a600f6b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 10 Mar 2015 11:17:51 -0300 Subject: 'lua_pushliteral' implemented with 'lua_pushstring' (to take advantage of the cache) --- lua.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lua.h b/lua.h index 28dbe092..ad54f432 100644 --- a/lua.h +++ b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.325 2014/12/26 17:24:27 roberto Exp roberto $ +** $Id: lua.h,v 1.326 2015/01/13 19:50:30 roberto Exp roberto $ ** Lua - A Scripting Language ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) ** See Copyright Notice at the end of this file @@ -358,8 +358,7 @@ LUA_API void (lua_setallocf) (lua_State *L, lua_Alloc f, void *ud); #define lua_isnone(L,n) (lua_type(L, (n)) == LUA_TNONE) #define lua_isnoneornil(L, n) (lua_type(L, (n)) <= 0) -#define lua_pushliteral(L, s) \ - lua_pushlstring(L, "" s, (sizeof(s)/sizeof(char))-1) +#define lua_pushliteral(L, s) lua_pushstring(L, "" s) #define lua_pushglobaltable(L) \ lua_rawgeti(L, LUA_REGISTRYINDEX, LUA_RIDX_GLOBALS) -- cgit v1.2.3-55-g6feb