From e04f7ed4509af1577c10ead8e5d7d55c65754bf8 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 18 Dec 2001 18:52:30 -0200 Subject: first version of Lua "stackless" --- luadebug.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'luadebug.h') diff --git a/luadebug.h b/luadebug.h index b6d7c4b5..d2988506 100644 --- a/luadebug.h +++ b/luadebug.h @@ -1,5 +1,5 @@ /* -** $Id: luadebug.h,v 1.20 2001/04/06 21:17:37 roberto Exp $ +** $Id: luadebug.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $ ** Debugging API ** See Copyright Notice in lua.h */ @@ -39,7 +39,7 @@ struct lua_Debug { const char *source; /* (S) */ char short_src[LUA_IDSIZE]; /* (S) */ /* private part */ - struct CallInfo *_ci; /* active function */ + int _ci; /* active function */ }; -- cgit v1.2.3-55-g6feb