summaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-12-07 13:33:27 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-12-07 13:33:27 -0200
commit16fd4abaf618fb37ade221cbc64399c519685854 (patch)
treec28206f582ee7f8267098f39f3962036ec09528d /llex.h
parentf26b85c5b7740d2a185998a155e1323bac86dc13 (diff)
downloadlua-github-16fd4abaf618fb37ade221cbc64399c519685854.tar.gz
corrects decimal point to follow current locale
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h3
1 files changed, 2 insertions, 1 deletions
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;