From 45b173cbf89597123267a69bace778cf498d6c98 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Sat, 21 Jul 2001 21:59:36 -0300 Subject: warnings/details --- lapi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lapi.c') diff --git a/lapi.c b/lapi.c index 0d23b4c3..60877553 100644 --- a/lapi.c +++ b/lapi.c @@ -1,5 +1,5 @@ /* -** $Id: lapi.c,v 1.147 2001/06/26 13:20:45 roberto Exp roberto $ +** $Id: lapi.c,v 1.148 2001/07/12 18:11:58 roberto Exp roberto $ ** Lua API ** See Copyright Notice in lua.h */ @@ -489,7 +489,7 @@ LUA_API int lua_ref (lua_State *L, int lock) { lua_rawseti(L, -2, ref); lua_pop(L, 1); /* remove registry */ } - lua_pushliteral(L, "n"); + lua_pushliteral(L, l_s("n")); lua_pushnumber(L, ref); lua_settable(L, -3); lua_pop(L, 2); -- cgit v1.2.3-55-g6feb