diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-12-07 13:33:27 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-12-07 13:33:27 -0200 |
commit | 16fd4abaf618fb37ade221cbc64399c519685854 (patch) | |
tree | c28206f582ee7f8267098f39f3962036ec09528d /llex.h | |
parent | f26b85c5b7740d2a185998a155e1323bac86dc13 (diff) | |
download | lua-16fd4abaf618fb37ade221cbc64399c519685854.tar.gz lua-16fd4abaf618fb37ade221cbc64399c519685854.tar.bz2 lua-16fd4abaf618fb37ade221cbc64399c519685854.zip |
corrects decimal point to follow current locale
Diffstat (limited to '')
-rw-r--r-- | llex.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 | ||