From 39b79783297bee79db9853b63d199e120a009a8f Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 23 Feb 2001 14:17:25 -0300 Subject: first (big) step to support wide chars --- lstate.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lstate.h') diff --git a/lstate.h b/lstate.h index f718d857..a6f0e062 100644 --- a/lstate.h +++ b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 1.50 2001/02/02 15:13:05 roberto Exp roberto $ +** $Id: lstate.h,v 1.51 2001/02/20 18:15:33 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -61,10 +61,10 @@ typedef struct stringtable { /* -** "global state", shared by all threads of this state +** `global state', shared by all threads of this state */ typedef struct global_State { - char *Mbuffer; /* global buffer */ + l_char *Mbuffer; /* global buffer */ size_t Mbuffsize; /* size of Mbuffer */ Proto *rootproto; /* list of all prototypes */ Closure *rootcl; /* list of all closures */ @@ -85,7 +85,7 @@ typedef struct global_State { /* -** "per thread" state +** `per thread' state */ struct lua_State { LUA_USERSTATE -- cgit v1.2.3-55-g6feb