diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-04-07 10:11:49 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-04-07 10:11:49 -0300 |
commit | 42130ed71264a18cdb955ed4b3a8314f9a6c85cc (patch) | |
tree | 4c935836048429d44f72798e31e4155431bccde8 /llex.c | |
parent | d615e78e08201906e2f1dfc054b080fbbf7db428 (diff) | |
download | lua-42130ed71264a18cdb955ed4b3a8314f9a6c85cc.tar.gz lua-42130ed71264a18cdb955ed4b3a8314f9a6c85cc.tar.bz2 lua-42130ed71264a18cdb955ed4b3a8314f9a6c85cc.zip |
name changes
Diffstat (limited to 'llex.c')
-rw-r--r-- | llex.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.c,v 1.54 2000/03/24 17:26:08 roberto Exp roberto $ | 2 | ** $Id: llex.c,v 1.55 2000/04/05 17:51:58 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 | */ |
@@ -378,7 +378,7 @@ int luaX_lex (LexState *LS) { | |||
378 | next(LS); | 378 | next(LS); |
379 | return TK_DOTS; /* ... */ | 379 | return TK_DOTS; /* ... */ |
380 | } | 380 | } |
381 | else return TK_CONC; /* .. */ | 381 | else return TK_CONCAT; /* .. */ |
382 | } | 382 | } |
383 | else if (!isdigit(LS->current)) return '.'; | 383 | else if (!isdigit(LS->current)) return '.'; |
384 | else goto fraction; /* LS->current is a digit */ | 384 | else goto fraction; /* LS->current is a digit */ |