* src/pshinter/pshalgo2.c: changed 'print_zone' to 'psh2_print_zone' * src/pshinter/pshalgo1.c: changed 'print_zone' to 'psh1_print_zone'
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
diff --git a/ChangeLog b/ChangeLog
index 81308c2..99cc463 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,10 @@
fixed another bug related to the ascender/descender/text height of
Postscript fonts. Damn, this should have been fixed on 2002-03-04 !
+ * src/pshinter/pshalgo2.c: changed 'print_zone' to 'psh2_print_zone'
+ * src/pshinter/pshalgo1.c: changed 'print_zone' to 'psh1_print_zone'
+
+
2002-03-06 Werner Lemberg <wl@gnu.org>
* src/pshinter/pshglob.h (PSH_DimensionRec): s/std/stdw/.
diff --git a/src/pshinter/pshalgo1.c b/src/pshinter/pshalgo1.c
index a46f6c3..438e99c 100644
--- a/src/pshinter/pshalgo1.c
+++ b/src/pshinter/pshalgo1.c
@@ -498,7 +498,7 @@
#include <stdio.h>
static void
- print_zone( PSH1_Zone zone )
+ psh1_print_zone( PSH1_Zone zone )
{
printf( "zone [scale,delta,min,max] = [%.3f,%.3f,%d,%d]\n",
zone->scale / 65536.0,
@@ -508,7 +508,7 @@
}
#else
-#define print_zone( x ) do { } while ( 0 )
+#define psh1_print_zone( x ) do { } while ( 0 )
#endif
/* setup interpolation zones once the hints have been grid-fitted */
@@ -549,7 +549,7 @@
zone->min = PSH1_ZONE_MIN;
zone->max = hint->org_pos;
- print_zone( zone );
+ psh1_print_zone( zone );
zone++;
@@ -570,7 +570,7 @@
zone->max = hint->org_pos + hint->org_len;
zone->delta = hint->cur_pos - FT_MulFix( zone->min, scale2 );
- print_zone( zone );
+ psh1_print_zone( zone );
zone++;
}
@@ -593,7 +593,7 @@
zone->delta = hint->cur_pos + hint->cur_len -
FT_MulFix( zone->min, scale2 );
- print_zone( zone );
+ psh1_print_zone( zone );
zone++;
@@ -607,7 +607,7 @@
zone->delta = hint->cur_pos + hint->cur_len -
FT_MulFix( zone->min, scale );
- print_zone( zone );
+ psh1_print_zone( zone );
zone++;