diff options
author | Jeffrey H. Kingston <jeff@it.usyd.edu.au> | 2010-09-14 20:38:23 +0000 |
---|---|---|
committer | Jeffrey H. Kingston <jeff@it.usyd.edu.au> | 2010-09-14 20:38:23 +0000 |
commit | 78c2bcf9e96ab00615ee6f96905bca78fcd52a00 (patch) | |
tree | 9c7e31f2a59e174433e55b589771005b48a34158 /z31.c | |
parent | 9daa98ce90ceeeaba9e942d28575d8fcfe36db4b (diff) | |
download | lout-78c2bcf9e96ab00615ee6f96905bca78fcd52a00.tar.gz |
Lout 3.27.
git-svn-id: http://svn.savannah.nongnu.org/svn/lout/trunk@23 9365b830-b601-4143-9ba8-b4a8e2c3339c
Diffstat (limited to 'z31.c')
-rw-r--r-- | z31.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,9 +1,9 @@ /*@z31.c:Memory Allocator:DebugMemory()@**************************************/ /* */ -/* THE LOUT DOCUMENT FORMATTING SYSTEM (VERSION 3.26) */ +/* THE LOUT DOCUMENT FORMATTING SYSTEM (VERSION 3.27) */ /* COPYRIGHT (C) 1991, 2002 Jeffrey H. Kingston */ /* */ -/* Jeffrey H. Kingston (jeff@cs.usyd.edu.au) */ +/* Jeffrey H. Kingston (jeff@it.usyd.edu.au) */ /* Basser Department of Computer Science */ /* The University of Sydney 2006 */ /* AUSTRALIA */ @@ -56,6 +56,7 @@ static char *usage_strings[] = { "hyphenation pattern tables", "character mappings", "colour tables", + "texture tables", "language tables", }; @@ -232,6 +233,7 @@ void MemInit(void) zz_lengths[ BREAK ] = zz_lengths[ UNDERLINE ] = zz_lengths[ COLOUR ] = + zz_lengths[ TEXTURE ] = zz_lengths[ OUTLINE ] = zz_lengths[ LANGUAGE ] = zz_lengths[ CURR_LANG ] = @@ -266,6 +268,7 @@ void MemInit(void) zz_lengths[ GRAPHIC ] = zz_lengths[ LINK_SOURCE ] = zz_lengths[ LINK_DEST ] = + zz_lengths[ LINK_DEST_NULL] = zz_lengths[ LINK_URL ] = ceiling(sizeof(struct closure_type), sizeof(ALIGN)); |