diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-23 14:17:25 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-23 14:17:25 -0300 |
commit | 39b79783297bee79db9853b63d199e120a009a8f (patch) | |
tree | c738c621c4c28d8822c2f785400786301985273b /lcode.h | |
parent | d164e2294f73d8e69f00d95a66014514b2dd0ec0 (diff) | |
download | lua-39b79783297bee79db9853b63d199e120a009a8f.tar.gz lua-39b79783297bee79db9853b63d199e120a009a8f.tar.bz2 lua-39b79783297bee79db9853b63d199e120a009a8f.zip |
first (big) step to support wide chars
Diffstat (limited to '')
-rw-r--r-- | lcode.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lcode.h,v 1.19 2001/01/29 15:26:40 roberto Exp roberto $ | 2 | ** $Id: lcode.h,v 1.20 2001/02/20 18:15:33 roberto Exp roberto $ |
3 | ** Code generator for Lua | 3 | ** Code generator for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -47,7 +47,7 @@ typedef struct OpProperties { | |||
47 | extern const OpProperties luaK_opproperties[]; | 47 | extern const OpProperties luaK_opproperties[]; |
48 | 48 | ||
49 | 49 | ||
50 | void luaK_error (LexState *ls, const char *msg); | 50 | void luaK_error (LexState *ls, const l_char *msg); |
51 | int luaK_code0 (FuncState *fs, OpCode o); | 51 | int luaK_code0 (FuncState *fs, OpCode o); |
52 | int luaK_code1 (FuncState *fs, OpCode o, int arg1); | 52 | int luaK_code1 (FuncState *fs, OpCode o, int arg1); |
53 | int luaK_code2 (FuncState *fs, OpCode o, int arg1, int arg2); | 53 | int luaK_code2 (FuncState *fs, OpCode o, int arg1, int arg2); |