From 72659a06050632da1a9b4c492302be46ac283f6b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 28 Nov 2001 18:13:13 -0200 Subject: no more explicit support for wide-chars; too much troble... --- lcode.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lcode.h') diff --git a/lcode.h b/lcode.h index c2b87bff..3413fe88 100644 --- a/lcode.h +++ b/lcode.h @@ -1,5 +1,5 @@ /* -** $Id: lcode.h,v 1.23 2001/06/12 14:36:48 roberto Exp roberto $ +** $Id: lcode.h,v 1.24 2001/07/24 17:19:07 roberto Exp $ ** Code generator for Lua ** See Copyright Notice in lua.h */ @@ -38,7 +38,7 @@ typedef enum UnOpr { OPR_MINUS, OPR_NOT, OPR_NOUNOPR } UnOpr; #define luaK_codeAsBc(fs,o,A,sBc) luaK_codeABc(fs,o,A,(sBc)+MAXARG_sBc) -void luaK_error (LexState *ls, const l_char *msg); +void luaK_error (LexState *ls, const char *msg); int luaK_codeABc (FuncState *fs, OpCode o, int A, unsigned int Bc); int luaK_codeABC (FuncState *fs, OpCode o, int A, int B, int C); void luaK_nil (FuncState *fs, int from, int n); -- cgit v1.2.3-55-g6feb