aboutsummaryrefslogtreecommitdiff
path: root/table.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-02-26 18:00:27 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-02-26 18:00:27 -0300
commitd6e4c29733b43130c5222c49b3c4b9dfcd8bb893 (patch)
tree379cb091e690a3680bf1f26f23658d5d9af4789c /table.h
parent3e429699792218af45a0f399542e14563c1a173b (diff)
downloadlua-d6e4c29733b43130c5222c49b3c4b9dfcd8bb893.tar.gz
lua-d6e4c29733b43130c5222c49b3c4b9dfcd8bb893.tar.bz2
lua-d6e4c29733b43130c5222c49b3c4b9dfcd8bb893.zip
fixed strings (not collectable) don't need to be inserted in the constant table.
Diffstat (limited to 'table.h')
-rw-r--r--table.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/table.h b/table.h
index 6b4b9d3d..6360f102 100644
--- a/table.h
+++ b/table.h
@@ -1,7 +1,7 @@
1/* 1/*
2** Module to control static tables 2** Module to control static tables
3** TeCGraf - PUC-Rio 3** TeCGraf - PUC-Rio
4** $Id: table.h,v 2.17 1996/02/12 18:32:40 roberto Exp roberto $ 4** $Id: table.h,v 2.18 1996/02/14 13:35:51 roberto Exp roberto $
5*/ 5*/
6 6
7#ifndef table_h 7#ifndef table_h
@@ -26,7 +26,7 @@ Word luaI_findsymbolbyname (char *name);
26Word luaI_findsymbol (TaggedString *t); 26Word luaI_findsymbol (TaggedString *t);
27Word luaI_findconstant (TaggedString *t); 27Word luaI_findconstant (TaggedString *t);
28Word luaI_findconstantbyname (char *name); 28Word luaI_findconstantbyname (char *name);
29TaggedString *lua_constcreate (char *str); 29TaggedString *luaI_createfixedstring (char *str);
30int lua_markobject (Object *o); 30int lua_markobject (Object *o);
31Long luaI_collectgarbage (void); 31Long luaI_collectgarbage (void);
32void lua_pack (void); 32void lua_pack (void);