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-16fd4abaf618fb37ade221cbc64399c519685854.tar.gz
lua-16fd4abaf618fb37ade221cbc64399c519685854.tar.bz2
lua-16fd4abaf618fb37ade221cbc64399c519685854.zip
corrects decimal point to follow current locale
Diffstat (limited to '')
-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 @@
1/* 1/*
2** $Id: llex.h,v 1.54 2005/04/25 19:24:10 roberto Exp roberto $ 2** $Id: llex.h,v 1.55 2005/06/06 13:30:25 roberto Exp roberto $
3** Lexical Analyzer 3** Lexical Analyzer
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -63,6 +63,7 @@ typedef struct LexState {
63 ZIO *z; /* input stream */ 63 ZIO *z; /* input stream */
64 Mbuffer *buff; /* buffer for tokens */ 64 Mbuffer *buff; /* buffer for tokens */
65 TString *source; /* current source name */ 65 TString *source; /* current source name */
66 char decpoint; /* locale decimal point */
66} LexState; 67} LexState;
67 68
68 69