aboutsummaryrefslogtreecommitdiff
path: root/lstring.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-09 18:29:33 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-09 18:29:33 -0200
commit03d8a9bf0d8d9c149c0c2c0ae63732a8bfa512fd (patch)
tree7cc200dbbf6ac892ef2607683c50ae28f3f86fab /lstring.c
parentd2e340f467a46017fa3526074c1756124e569880 (diff)
downloadlua-03d8a9bf0d8d9c149c0c2c0ae63732a8bfa512fd.tar.gz
lua-03d8a9bf0d8d9c149c0c2c0ae63732a8bfa512fd.tar.bz2
lua-03d8a9bf0d8d9c149c0c2c0ae63732a8bfa512fd.zip
details
Diffstat (limited to 'lstring.c')
-rw-r--r--lstring.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lstring.c b/lstring.c
index f99e4c37..c8e2d608 100644
--- a/lstring.c
+++ b/lstring.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstring.c,v 1.56 2001/02/09 19:53:16 roberto Exp roberto $ 2** $Id: lstring.c,v 1.57 2001/02/09 20:22:29 roberto Exp roberto $
3** String table (keeps all strings handled by Lua) 3** String table (keeps all strings handled by Lua)
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -89,13 +89,12 @@ TString *luaS_newlstr (lua_State *L, const char *str, size_t l) {
89 89
90 90
91TString *luaS_newudata (lua_State *L, size_t s, void *udata) { 91TString *luaS_newudata (lua_State *L, size_t s, void *udata) {
92 union L_UTString *uts = (union L_UTString *)luaM_malloc(L, sizeudata(s)); 92 TString *ts = (TString *)luaM_malloc(L, sizeudata(s));
93 TString *ts = &uts->ts;
94 ts->marked = 0; 93 ts->marked = 0;
95 ts->nexthash = NULL; 94 ts->nexthash = NULL;
96 ts->len = s; 95 ts->len = s;
97 ts->u.d.tag = 0; 96 ts->u.d.tag = 0;
98 ts->u.d.value = (s > 0) ? uts+1 : udata; 97 ts->u.d.value = (s > 0) ? getstr(ts) : udata;
99 /* insert it on table */ 98 /* insert it on table */
100 newentry(L, &G(L)->udt, ts, lmod(IntPoint(ts->u.d.value), G(L)->udt.size)); 99 newentry(L, &G(L)->udt, ts, lmod(IntPoint(ts->u.d.value), G(L)->udt.size));
101 return ts; 100 return ts;