diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-11-28 18:13:13 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-11-28 18:13:13 -0200 |
commit | 72659a06050632da1a9b4c492302be46ac283f6b (patch) | |
tree | bac06b4ea523ba5443564d0869e392180d4b7b77 /ldo.h | |
parent | dfaf8c5291fa8aef5bedbfa375853475364ac76e (diff) | |
download | lua-72659a06050632da1a9b4c492302be46ac283f6b.tar.gz lua-72659a06050632da1a9b4c492302be46ac283f6b.tar.bz2 lua-72659a06050632da1a9b4c492302be46ac283f6b.zip |
no more explicit support for wide-chars; too much troble...
Diffstat (limited to 'ldo.h')
-rw-r--r-- | ldo.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldo.h,v 1.33 2001/06/05 19:41:24 roberto Exp roberto $ | 2 | ** $Id: ldo.h,v 1.34 2001/06/08 19:00:57 roberto Exp $ |
3 | ** Stack and Call structure of Lua | 3 | ** Stack and Call structure of Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -28,7 +28,7 @@ void luaD_lineHook (lua_State *L, int line, lua_Hook linehook); | |||
28 | void luaD_call (lua_State *L, StkId func); | 28 | void luaD_call (lua_State *L, StkId func); |
29 | void luaD_stackerror (lua_State *L); | 29 | void luaD_stackerror (lua_State *L); |
30 | 30 | ||
31 | void luaD_error (lua_State *L, const l_char *s); | 31 | void luaD_error (lua_State *L, const char *s); |
32 | void luaD_breakrun (lua_State *L, int errcode); | 32 | void luaD_breakrun (lua_State *L, int errcode); |
33 | int luaD_runprotected (lua_State *L, void (*f)(lua_State *, void *), void *ud); | 33 | int luaD_runprotected (lua_State *L, void (*f)(lua_State *, void *), void *ud); |
34 | 34 | ||