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 /ltm.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 'ltm.h')
-rw-r--r-- | ltm.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltm.h,v 1.27 2001/08/27 15:13:59 roberto Exp $ | 2 | ** $Id: ltm.h,v 1.28 2001/10/02 16:43:54 roberto Exp $ |
3 | ** Tag methods | 3 | ** Tag methods |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -67,12 +67,12 @@ struct TM { | |||
67 | 67 | ||
68 | #define validtag(G,t) (NUM_TAGS <= (t) && (t) < G->ntag) | 68 | #define validtag(G,t) (NUM_TAGS <= (t) && (t) < G->ntag) |
69 | 69 | ||
70 | extern const l_char *const luaT_eventname[]; | 70 | extern const char *const luaT_eventname[]; |
71 | 71 | ||
72 | 72 | ||
73 | void luaT_init (lua_State *L); | 73 | void luaT_init (lua_State *L); |
74 | int luaT_newtag (lua_State *L, const l_char *name, int basictype); | 74 | int luaT_newtag (lua_State *L, const char *name, int basictype); |
75 | const l_char *luaT_typename (global_State *G, const TObject *o); | 75 | const char *luaT_typename (global_State *G, const TObject *o); |
76 | int luaT_tag (const TObject *o); | 76 | int luaT_tag (const TObject *o); |
77 | 77 | ||
78 | 78 | ||