浏览代码

field short_src

Roberto Ierusalimschy 25 年之前
父节点
当前提交
01ce1ce48c
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      ldblib.c

+ 3 - 1
ldblib.c

@@ -1,5 +1,5 @@
 /*
-** $Id: ldblib.c,v 1.19 2000/08/28 17:57:04 roberto Exp roberto $
+** $Id: ldblib.c,v 1.20 2000/09/05 19:33:32 roberto Exp roberto $
 ** Interface from Lua to its debug API
 ** See Copyright Notice in lua.h
 */
@@ -55,6 +55,8 @@ static int getinfo (lua_State *L) {
     switch (*options) {
       case 'S':
         settabss(L, "source", ar.source);
+        if (ar.source)
+          settabss(L, "short_src", ar.short_src);
         settabsi(L, "linedefined", ar.linedefined);
         settabss(L, "what", ar.what);
         break;