aboutsummaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
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 */