From d6e4c29733b43130c5222c49b3c4b9dfcd8bb893 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 26 Feb 1996 18:00:27 -0300 Subject: fixed strings (not collectable) don't need to be inserted in the constant table. --- table.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'table.h') diff --git a/table.h b/table.h index 6b4b9d3d..6360f102 100644 --- a/table.h +++ b/table.h @@ -1,7 +1,7 @@ /* ** Module to control static tables ** TeCGraf - PUC-Rio -** $Id: table.h,v 2.17 1996/02/12 18:32:40 roberto Exp roberto $ +** $Id: table.h,v 2.18 1996/02/14 13:35:51 roberto Exp roberto $ */ #ifndef table_h @@ -26,7 +26,7 @@ Word luaI_findsymbolbyname (char *name); Word luaI_findsymbol (TaggedString *t); Word luaI_findconstant (TaggedString *t); Word luaI_findconstantbyname (char *name); -TaggedString *lua_constcreate (char *str); +TaggedString *luaI_createfixedstring (char *str); int lua_markobject (Object *o); Long luaI_collectgarbage (void); void lua_pack (void); -- cgit v1.2.3-55-g6feb