summaryrefslogtreecommitdiff
path: root/ldebug.c
diff options
context:
space:
mode:
Diffstat (limited to 'ldebug.c')
-rw-r--r--ldebug.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ldebug.c b/ldebug.c
index a89aab8c..24752fb3 100644
--- a/ldebug.c
+++ b/ldebug.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldebug.c,v 2.24 2005/06/28 13:01:31 roberto Exp roberto $ 2** $Id: ldebug.c,v 2.25 2005/07/11 13:59:03 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*/
@@ -152,6 +152,7 @@ static void funcinfo (lua_Debug *ar, Closure *cl) {
152 if (cl->c.isC) { 152 if (cl->c.isC) {
153 ar->source = "=[C]"; 153 ar->source = "=[C]";
154 ar->linedefined = -1; 154 ar->linedefined = -1;
155 ar->lastlinedefined = -1;
155 ar->what = "C"; 156 ar->what = "C";
156 } 157 }
157 else { 158 else {