From 42130ed71264a18cdb955ed4b3a8314f9a6c85cc Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 7 Apr 2000 10:11:49 -0300 Subject: name changes --- llex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llex.c') diff --git a/llex.c b/llex.c index ec8231a2..7c8ccd22 100644 --- a/llex.c +++ b/llex.c @@ -1,5 +1,5 @@ /* -** $Id: llex.c,v 1.54 2000/03/24 17:26:08 roberto Exp roberto $ +** $Id: llex.c,v 1.55 2000/04/05 17:51:58 roberto Exp roberto $ ** Lexical Analyzer ** See Copyright Notice in lua.h */ @@ -378,7 +378,7 @@ int luaX_lex (LexState *LS) { next(LS); return TK_DOTS; /* ... */ } - else return TK_CONC; /* .. */ + else return TK_CONCAT; /* .. */ } else if (!isdigit(LS->current)) return '.'; else goto fraction; /* LS->current is a digit */ -- cgit v1.2.3-55-g6feb