aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2006-11-22 09:43:47 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2006-11-22 09:43:47 -0200
commita68df3898d3f4768106481e1a8010a768f22f943 (patch)
tree501a66285aa47378ac4a7aada16c1a02c6cb1da6
parent4d7cfff6df9cbd5a60bfa41acf4bcc93413b038f (diff)
downloadlua-a68df3898d3f4768106481e1a8010a768f22f943.tar.gz
lua-a68df3898d3f4768106481e1a8010a768f22f943.tar.bz2
lua-a68df3898d3f4768106481e1a8010a768f22f943.zip
detail
-rw-r--r--ldebug.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ldebug.c b/ldebug.c
index 0f30c2a7..22aed8bd 100644
--- a/ldebug.c
+++ b/ldebug.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldebug.c,v 2.32 2006/09/11 14:07:24 roberto Exp roberto $ 2** $Id: ldebug.c,v 2.33 2006/09/19 13:57:50 roberto Exp roberto $
3** Debug Interface 3** Debug Interface
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -168,7 +168,8 @@ static void funcinfo (lua_Debug *ar, Closure *cl) {
168 168
169 169
170static void info_tailcall (lua_Debug *ar) { 170static void info_tailcall (lua_Debug *ar) {
171 ar->name = ar->namewhat = ""; 171 ar->name = NULL;
172 ar->namewhat = "";
172 ar->what = "tail"; 173 ar->what = "tail";
173 ar->lastlinedefined = ar->linedefined = ar->currentline = -1; 174 ar->lastlinedefined = ar->linedefined = ar->currentline = -1;
174 ar->source = "=(tail call)"; 175 ar->source = "=(tail call)";