From 22329e4cdf6c6741523099173c31b0a421825a3c Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 5 Apr 2000 14:51:58 -0300 Subject: implementation of BREAK --- llex.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'llex.c') diff --git a/llex.c b/llex.c index f56b0a21..ec8231a2 100644 --- a/llex.c +++ b/llex.c @@ -1,5 +1,5 @@ /* -** $Id: llex.c,v 1.53 2000/03/10 18:37:44 roberto Exp roberto $ +** $Id: llex.c,v 1.54 2000/03/24 17:26:08 roberto Exp roberto $ ** Lexical Analyzer ** See Copyright Notice in lua.h */ @@ -31,7 +31,8 @@ /* ORDER RESERVED */ -static const char *const token2string [] = {"and", "do", "else", "elseif", "end", +static const char *const token2string [] = { + "and", "break", "do", "else", "elseif", "end", "function", "if", "local", "nil", "not", "or", "repeat", "return", "then", "until", "while", "", "..", "...", "==", ">=", "<=", "~=", "", "", ""}; -- cgit v1.2.3-55-g6feb