summaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-04-07 10:11:49 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-04-07 10:11:49 -0300
commit42130ed71264a18cdb955ed4b3a8314f9a6c85cc (patch)
tree4c935836048429d44f72798e31e4155431bccde8 /llex.c
parentd615e78e08201906e2f1dfc054b080fbbf7db428 (diff)
downloadlua-42130ed71264a18cdb955ed4b3a8314f9a6c85cc.tar.gz
lua-42130ed71264a18cdb955ed4b3a8314f9a6c85cc.tar.bz2
lua-42130ed71264a18cdb955ed4b3a8314f9a6c85cc.zip
name changes
Diffstat (limited to 'llex.c')
-rw-r--r--llex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/llex.c b/llex.c
index ec8231a2..7c8ccd22 100644
--- a/llex.c
+++ b/llex.c
@@ -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 */