diff options
author | Jeffrey H. Kingston <jeff@it.usyd.edu.au> | 2010-09-14 20:38:56 +0000 |
---|---|---|
committer | Jeffrey H. Kingston <jeff@it.usyd.edu.au> | 2010-09-14 20:38:56 +0000 |
commit | 7d292f1247e3287fb07a9a12377217ce8942cf09 (patch) | |
tree | ffe937ba04fb59a72b785040cf29db1476f7282a /z12.c | |
parent | 68c155de3c3e83f53404288a318c5e29f0c4610f (diff) | |
download | lout-7d292f1247e3287fb07a9a12377217ce8942cf09.tar.gz |
Lout 3.29.
git-svn-id: http://svn.savannah.nongnu.org/svn/lout/trunk@27 9365b830-b601-4143-9ba8-b4a8e2c3339c
Diffstat (limited to 'z12.c')
-rw-r--r-- | z12.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,10 +1,10 @@ /*@z12.c:Size Finder:MinSize()@***********************************************/ /* */ -/* THE LOUT DOCUMENT FORMATTING SYSTEM (VERSION 3.28) */ -/* COPYRIGHT (C) 1991, 2002 Jeffrey H. Kingston */ +/* THE LOUT DOCUMENT FORMATTING SYSTEM (VERSION 3.29) */ +/* COPYRIGHT (C) 1991, 2003 Jeffrey H. Kingston */ /* */ /* Jeffrey H. Kingston (jeff@it.usyd.edu.au) */ -/* Basser Department of Computer Science */ +/* School of Information Technologies */ /* The University of Sydney 2006 */ /* AUSTRALIA */ /* */ @@ -38,7 +38,7 @@ #if DEBUG_ON static int debug_depth = 1; -static int debug_depth_max = 5; +static int debug_depth_max = 7; #endif /*****************************************************************************/ @@ -676,7 +676,7 @@ OBJECT MinSize(OBJECT x, int dim, OBJECT *extras) for( link = NextDown(Down(x)); link != x; link = NextDown(link) ) { Child(y, link); - New(catch_extras, ACAT) + New(catch_extras, ACAT); y = MinSize(y, dim, &catch_extras); if( Down(catch_extras) != catch_extras ) { |