first version of Lua "stackless"

This commit is contained in:
Roberto Ierusalimschy
2001-12-18 18:52:30 -02:00
parent 101cee3032
commit e04f7ed450
8 changed files with 49 additions and 50 deletions

View File

@@ -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 */
};