From a68df3898d3f4768106481e1a8010a768f22f943 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 22 Nov 2006 09:43:47 -0200 Subject: detail --- ldebug.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'ldebug.c') diff --git a/ldebug.c b/ldebug.c index 0f30c2a7..22aed8bd 100644 --- a/ldebug.c +++ b/ldebug.c @@ -1,5 +1,5 @@ /* -** $Id: ldebug.c,v 2.32 2006/09/11 14:07:24 roberto Exp roberto $ +** $Id: ldebug.c,v 2.33 2006/09/19 13:57:50 roberto Exp roberto $ ** Debug Interface ** See Copyright Notice in lua.h */ @@ -168,7 +168,8 @@ static void funcinfo (lua_Debug *ar, Closure *cl) { static void info_tailcall (lua_Debug *ar) { - ar->name = ar->namewhat = ""; + ar->name = NULL; + ar->namewhat = ""; ar->what = "tail"; ar->lastlinedefined = ar->linedefined = ar->currentline = -1; ar->source = "=(tail call)"; -- cgit v1.2.3-55-g6feb