summaryrefslogtreecommitdiff
path: root/lcode.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-23 14:17:25 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-23 14:17:25 -0300
commit39b79783297bee79db9853b63d199e120a009a8f (patch)
treec738c621c4c28d8822c2f785400786301985273b /lcode.h
parentd164e2294f73d8e69f00d95a66014514b2dd0ec0 (diff)
downloadlua-39b79783297bee79db9853b63d199e120a009a8f.tar.gz
lua-39b79783297bee79db9853b63d199e120a009a8f.tar.bz2
lua-39b79783297bee79db9853b63d199e120a009a8f.zip
first (big) step to support wide chars
Diffstat (limited to '')
-rw-r--r--lcode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lcode.h b/lcode.h
index 41b8a55b..b73e9947 100644
--- a/lcode.h
+++ b/lcode.h
@@ -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 {
47extern const OpProperties luaK_opproperties[]; 47extern const OpProperties luaK_opproperties[];
48 48
49 49
50void luaK_error (LexState *ls, const char *msg); 50void luaK_error (LexState *ls, const l_char *msg);
51int luaK_code0 (FuncState *fs, OpCode o); 51int luaK_code0 (FuncState *fs, OpCode o);
52int luaK_code1 (FuncState *fs, OpCode o, int arg1); 52int luaK_code1 (FuncState *fs, OpCode o, int arg1);
53int luaK_code2 (FuncState *fs, OpCode o, int arg1, int arg2); 53int luaK_code2 (FuncState *fs, OpCode o, int arg1, int arg2);