From d1608c597e2f45021d43c56050aff08e5d417699 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 14 Feb 1996 10:35:51 -0300 Subject: reserved words are stored in main string table; "marked" field is used to indicate its type. Table initializations centralized by "tree.c". --- lex.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'lex.h') diff --git a/lex.h b/lex.h index e56dbf25..0c6b14d9 100644 --- a/lex.h +++ b/lex.h @@ -1,7 +1,7 @@ /* ** lex.h ** TecCGraf - PUC-Rio -** $Id: $ +** $Id: lex.h,v 1.1 1996/02/13 17:30:39 roberto Exp roberto $ */ #ifndef lex_h @@ -10,9 +10,10 @@ typedef int (*Input) (void); -void lua_setinput (Input fn); /* from "lex.c" module */ -char *lua_lasttext (void); /* from "lex.c" module */ -int luaY_lex (void); /* from "lex.c" module */ +void lua_setinput (Input fn); +char *lua_lasttext (void); +int luaY_lex (void); +void luaI_addReserved (void); #endif -- cgit v1.2.3-55-g6feb