From 16fd4abaf618fb37ade221cbc64399c519685854 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 7 Dec 2005 13:33:27 -0200 Subject: corrects decimal point to follow current locale --- llex.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'llex.h') diff --git a/llex.h b/llex.h index a62a20e0..2a7a3664 100644 --- a/llex.h +++ b/llex.h @@ -1,5 +1,5 @@ /* -** $Id: llex.h,v 1.54 2005/04/25 19:24:10 roberto Exp roberto $ +** $Id: llex.h,v 1.55 2005/06/06 13:30:25 roberto Exp roberto $ ** Lexical Analyzer ** See Copyright Notice in lua.h */ @@ -63,6 +63,7 @@ typedef struct LexState { ZIO *z; /* input stream */ Mbuffer *buff; /* buffer for tokens */ TString *source; /* current source name */ + char decpoint; /* locale decimal point */ } LexState; -- cgit v1.2.3-55-g6feb