diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2006-11-22 09:43:47 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2006-11-22 09:43:47 -0200 |
commit | a68df3898d3f4768106481e1a8010a768f22f943 (patch) | |
tree | 501a66285aa47378ac4a7aada16c1a02c6cb1da6 | |
parent | 4d7cfff6df9cbd5a60bfa41acf4bcc93413b038f (diff) | |
download | lua-a68df3898d3f4768106481e1a8010a768f22f943.tar.gz lua-a68df3898d3f4768106481e1a8010a768f22f943.tar.bz2 lua-a68df3898d3f4768106481e1a8010a768f22f943.zip |
detail
-rw-r--r-- | ldebug.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 | ||
170 | static void info_tailcall (lua_Debug *ar) { | 170 | static 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)"; |