aboutsummaryrefslogtreecommitdiff
path: root/lstring.c
diff options
context:
space:
mode:
Diffstat (limited to 'lstring.c')
-rw-r--r--lstring.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstring.c b/lstring.c
index 85ede619..42cf255f 100644
--- a/lstring.c
+++ b/lstring.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstring.c,v 1.30 1999/11/26 18:59:20 roberto Exp roberto $ 2** $Id: lstring.c,v 1.31 1999/12/14 18:42:57 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*/
@@ -18,7 +18,7 @@
18 18
19 19
20#define gcsizestring(L, l) numblocks(L, 0, sizeof(TaggedString)+l) 20#define gcsizestring(L, l) numblocks(L, 0, sizeof(TaggedString)+l)
21#define gcsizeudata gcsizestring(L, 0) 21#define gcsizeudata gcsizestring(L, 0)
22 22
23 23
24 24