avoid use of l_char outside INTERNALs (use lua_char instead)

This commit is contained in:
Roberto Ierusalimschy
2001-04-06 18:17:37 -03:00
parent 9aedea6ec8
commit 2a50188269
3 changed files with 61 additions and 54 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: luadebug.h,v 1.18 2001/02/23 17:17:25 roberto Exp roberto $
** $Id: luadebug.h,v 1.19 2001/03/07 18:09:25 roberto Exp roberto $
** Debugging API
** See Copyright Notice in lua.h
*/
@@ -18,9 +18,9 @@ typedef void (*lua_Hook) (lua_State *L, lua_Debug *ar);
LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar);
LUA_API int lua_getinfo (lua_State *L, const l_char *what, lua_Debug *ar);
LUA_API const l_char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n);
LUA_API const l_char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n);
LUA_API int lua_getinfo (lua_State *L, const lua_char *what, lua_Debug *ar);
LUA_API const lua_char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n);
LUA_API const lua_char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n);
LUA_API lua_Hook lua_setcallhook (lua_State *L, lua_Hook func);
LUA_API lua_Hook lua_setlinehook (lua_State *L, lua_Hook func);
@@ -29,15 +29,15 @@ LUA_API lua_Hook lua_setlinehook (lua_State *L, lua_Hook func);
#define LUA_IDSIZE 60
struct lua_Debug {
const l_char *event; /* `call', `return' */
const lua_char *event; /* `call', `return' */
int currentline; /* (l) */
const l_char *name; /* (n) */
const l_char *namewhat; /* (n) `global', `tag method', `local', `field' */
const lua_char *name; /* (n) */
const lua_char *namewhat; /* (n) `global', `tag method', `local', `field' */
int nups; /* (u) number of upvalues */
int linedefined; /* (S) */
const l_char *what; /* (S) `Lua' function, `C' function, Lua `main' */
const l_char *source; /* (S) */
l_char short_src[LUA_IDSIZE]; /* (S) */
const lua_char *what; /* (S) `Lua' function, `C' function, Lua `main' */
const lua_char *source; /* (S) */
lua_char short_src[LUA_IDSIZE]; /* (S) */
/* private part */
struct CallInfo *_ci; /* active function */
};