From f97c64d7bf4c0f373711795d8faba0e8cd206761 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 17 Oct 2014 13:28:21 -0300 Subject: macros 'LUA_QL'/'LUA_QL' deprecated --- ldebug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ldebug.c') diff --git a/ldebug.c b/ldebug.c index e31c0607..98eb8dc9 100644 --- a/ldebug.c +++ b/ldebug.c @@ -1,5 +1,5 @@ /* -** $Id: ldebug.c,v 2.99 2014/07/17 12:30:53 roberto Exp roberto $ +** $Id: ldebug.c,v 2.100 2014/07/30 14:00:14 roberto Exp roberto $ ** Debug Interface ** See Copyright Notice in lua.h */ @@ -515,7 +515,7 @@ static const char *varinfo (lua_State *L, const TValue *o) { kind = getobjname(ci_func(ci)->p, currentpc(ci), cast_int(o - ci->u.l.base), &name); } - return (kind) ? luaO_pushfstring(L, " (%s " LUA_QS ")", kind, name) : ""; + return (kind) ? luaO_pushfstring(L, " (%s '%s')", kind, name) : ""; } -- cgit v1.2.3-55-g6feb