From 0892f0e5b75c51f1fee07276a3ba13301b83409e Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 30 Jul 1997 19:00:50 -0300 Subject: BIG CHANGE: functions have their own "constant table". --- tree.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tree.c') diff --git a/tree.c b/tree.c index 360d2159..aea613c3 100644 --- a/tree.c +++ b/tree.c @@ -3,7 +3,7 @@ ** TecCGraf - PUC-Rio */ -char *rcs_tree="$Id: tree.c,v 1.27 1997/06/09 17:28:14 roberto Exp roberto $"; +char *rcs_tree="$Id: tree.c,v 1.28 1997/06/11 14:24:40 roberto Exp roberto $"; #include @@ -149,7 +149,7 @@ TaggedString *luaI_createudata (void *udata, int tag) return insert(udata, tag, &string_root[(unsigned)udata%NUM_HASHS]); } -TaggedString *lua_createstring (char *str) +TaggedString *luaI_createstring (char *str) { return insert(str, LUA_T_STRING, &string_root[(unsigned)str[0]%NUM_HASHS]); } -- cgit v1.2.3-55-g6feb