Commit f8ba2005ab6f35ad5cda250dfc6105101a10acb4

Werner Lemberg 2002-03-30T13:16:35

* include/freetype/t1tables.h (t1_blend_max): Fix typo. * src/base/ftstream.c: Simplify FT_ERROR calls. formatting, copyright update

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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
diff --git a/ChangeLog b/ChangeLog
index 85889a3..ab53fe2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-03-30  Werner Lemberg  <wl@gnu.org>
+
+	* include/freetype/t1tables.h (t1_blend_max): Fix typo.
+	* src/base/ftstream.c: Simplify FT_ERROR calls.
+
 2002-03-29  Werner Lemberg  <wl@gnu.org>
 
 	* builds/vms/ftconfig.h: Rename LOCAL_DEF and LOCAL_FUNC to
@@ -146,6 +151,8 @@
 	  FT_AutoHinter_Done_Global_Func => FT_AutoHinter_GlobalDoneFunc
 	  etc.
 
+	* ahloader.h [_STANDALONE_]: Removed all conditional code.
+
 	* include/freetype/internal/cfftypes.h, src/cff/*.c: Updating the
 	type definitions of the CFF font driver.
 
@@ -169,17 +176,25 @@
 	  FTDriver_initGlyphSlot => FT_Slot_InitFunc
 	  etc.
 
-	* include/freetype/internal/ftobjs.h, src/base/ftapi.c,
-	src/base/ftobjs.c: Updated a few face method definitions:
+	* include/freetype/internal/ftobjs.h, src/base/ftobjs.c: Updated a
+	few face method definitions:
 
 	  FT_PSName_Requester     => FT_Face_GetPostscriptNameFunc
 	  FT_Glyph_Name_Requester => FT_Face_GetGlyphNameFunc
 	  FT_Name_Index_Requester => FT_Face_GetGlyphNameIndexFunc
 
+	* src/base/ftapi.c: New file.  It contains backwards compatibility
+	functions.
+
 	* include/freetype/internal/psaux.h, src/cid/cidload.c,
 	src/cidtoken.h, src/psaux/psobjs.c, src/psaux/psobjs.h,
 	src/psaux/t1decode.c, stc/type1/t1load.c, src/type1/t1tokens.h:
 	Updated common PostScript type definitions.
+	Renamed all enumeration values like to uppercase variants:
+
+	  t1_token_any      => T1_TOKEN_TYPE_ANY
+	  t1_field_cid_info => T1_FIELD_LOCATION_CID_INFO
+	  etc.
 
 	* include/freetype/internal/psglobals.h,
 	include/freetype/internal/pshints.h, src/pshinter/pshglob.h:
@@ -278,9 +293,9 @@
 	(psh1_print_zone): This.
 
 	* include/freetype/freetype.h, include/freetype/internal/ftobjs.h,
-	src/base/ftobjs.c, src/base/ftinit.c: Adding the new
-	FT_Library_Version API to return the library's current version in
-	dynamic links.
+	src/base/ftobjs.c: Adding the new FT_Library_Version API to return
+	the library's current version in dynamic links.
+	* src/base/ftinit.c (FT_Init_FreeType): Updated.
 
 2002-03-06  Werner Lemberg  <wl@gnu.org>
 
@@ -309,6 +324,9 @@
 	Windows-encoded entries before Macintosh or Unicode ones, since it
 	seems some fonts don't have reliable values here anyway.
 
+	* include/freetype/internal/psnames.h: Add typedef for
+	`PSNames_Service'.
+
 2002-03-05  Werner Lemberg  <wl@gnu.org>
 
 	* builds/unix/aclocal.m4, builds/unix/ltmain.sh: Update to libtool
@@ -405,8 +423,9 @@
 	  ft_close_stream => ft_ansi_stream_close (in base/ftsystem.c only)
 	  ft_io_stream    => ft_ansi_stream_io    (in base/ftsystem.c only)
 
-	* Moving all memory and list management code to "src/base/ftutil.c"
-	(previously in "ftobjs.c" and "ftlist.c" respectively).
+	* src/base/ftutil.c: New file.  Contains all memory and list
+	management code (previously in "ftobjs.c" and "ftlist.c",
+	respectively).
 
 	* include/freetype/internal/ftobjs.h: Moving all code related to
 	glyph loaders to ...
diff --git a/include/freetype/internal/pshints.h b/include/freetype/internal/pshints.h
index a078fa1..9b85065 100644
--- a/include/freetype/internal/pshints.h
+++ b/include/freetype/internal/pshints.h
@@ -6,7 +6,7 @@
 /*    recorders (specification only).  These are used to support native    */
 /*    T1/T2 hints in the "type1", "cid" and "cff" font drivers.            */
 /*                                                                         */
-/*  Copyright 2001 by                                                      */
+/*  Copyright 2001, 2002 by                                                */
 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 /*                                                                         */
 /*  This file is part of the FreeType project, and may only be used,       */
@@ -56,7 +56,7 @@ FT_BEGIN_HEADER
   (*PSH_Globals_DestroyFunc)( PSH_Globals  globals );
 
 
-  typedef struct PSH_Globals_FuncsRec_
+  typedef struct  PSH_Globals_FuncsRec_
   {
     PSH_Globals_NewFunc       create;
     PSH_Globals_SetScaleFunc  set_scale;
@@ -98,7 +98,7 @@ FT_BEGIN_HEADER
   /*      strange happened (e.g. memory shortage).                         */
   /*                                                                       */
   /*    The hints accumulated in the object can later be used by the       */
-  /*    Postscript hinter.                                                 */
+  /*    PostScript hinter.                                                 */
   /*                                                                       */
   typedef struct T1_HintsRec_*  T1_Hints;
 
@@ -215,6 +215,7 @@ FT_BEGIN_HEADER
   /*                                                                       */
   /* @input:                                                               */
   /*    hints     :: A handle to the Type 1 hints recorder.                */
+  /*                                                                       */
   /*    end_point :: The index of the last point in the input glyph in     */
   /*                 which the previously defined hints apply.             */
   /*                                                                       */
@@ -610,6 +611,7 @@ FT_BEGIN_HEADER
 
   typedef PSHinter_Interface*  PSHinter_Service;
 
+
 FT_END_HEADER
 
 #endif /* __PSHINTS_H__ */
diff --git a/include/freetype/internal/psnames.h b/include/freetype/internal/psnames.h
index d3875bb..d9f1556 100644
--- a/include/freetype/internal/psnames.h
+++ b/include/freetype/internal/psnames.h
@@ -5,7 +5,7 @@
 /*    High-level interface for the `PSNames' module (in charge of          */
 /*    various functions related to Postscript glyph names conversion).     */
 /*                                                                         */
-/*  Copyright 1996-2001 by                                                 */
+/*  Copyright 1996-2001, 2002 by                                           */
 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 /*                                                                         */
 /*  This file is part of the FreeType project, and may only be used,       */
@@ -232,6 +232,7 @@ FT_BEGIN_HEADER
 
   typedef PSNames_Interface*  PSNames_Service;
 
+
 FT_END_HEADER
 
 #endif /* __PSNAMES_H__ */
diff --git a/include/freetype/internal/sfnt.h b/include/freetype/internal/sfnt.h
index 96241db..a9c043d 100644
--- a/include/freetype/internal/sfnt.h
+++ b/include/freetype/internal/sfnt.h
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    High-level `sfnt' driver interface (specification).                  */
 /*                                                                         */
-/*  Copyright 1996-2001 by                                                 */
+/*  Copyright 1996-2001, 2002 by                                           */
 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 /*                                                                         */
 /*  This file is part of the FreeType project, and may only be used,       */
@@ -133,7 +133,7 @@ FT_BEGIN_HEADER
   /*************************************************************************/
   /*                                                                       */
   /* <FuncType>                                                            */
-  /*    TT_Load_SFNT_HeaderRec_Func                                           */
+  /*    TT_Load_SFNT_HeaderRec_Func                                        */
   /*                                                                       */
   /* <Description>                                                         */
   /*    Loads the header of a SFNT font file.  Supports collections.       */
@@ -162,10 +162,10 @@ FT_BEGIN_HEADER
   /*    values of `search_range', `entry_selector', and `range_shift'.     */
   /*                                                                       */
   typedef FT_Error
-  (*TT_Load_SFNT_HeaderRec_Func)( TT_Face       face,
-                                  FT_Stream     stream,
-                                  FT_Long       face_index,
-                                  SFNT_Header   sfnt );
+  (*TT_Load_SFNT_HeaderRec_Func)( TT_Face      face,
+                                  FT_Stream    stream,
+                                  FT_Long      face_index,
+                                  SFNT_Header  sfnt );
 
 
   /*************************************************************************/
@@ -192,9 +192,9 @@ FT_BEGIN_HEADER
   /*    TT_Load_Format_Tag().                                              */
   /*                                                                       */
   typedef FT_Error
-  (*TT_Load_Directory_Func)( TT_Face       face,
-                             FT_Stream     stream,
-                             SFNT_Header   sfnt );
+  (*TT_Load_Directory_Func)( TT_Face      face,
+                             FT_Stream    stream,
+                             SFNT_Header  sfnt );
 
 
   /*************************************************************************/
@@ -278,12 +278,12 @@ FT_BEGIN_HEADER
   /*    The `map.buffer' field is always freed before the glyph is loaded. */
   /*                                                                       */
   typedef FT_Error
-  (*TT_Load_SBit_Image_Func)( TT_Face           face,
-                              FT_ULong          strike_index,
-                              FT_UInt           glyph_index,
-                              FT_UInt           load_flags,
-                              FT_Stream         stream,
-                              FT_Bitmap        *amap,
+  (*TT_Load_SBit_Image_Func)( TT_Face              face,
+                              FT_ULong             strike_index,
+                              FT_UInt              glyph_index,
+                              FT_UInt              load_flags,
+                              FT_Stream            stream,
+                              FT_Bitmap           *amap,
                               TT_SBit_MetricsRec  *ametrics );
 
 
@@ -391,9 +391,9 @@ FT_BEGIN_HEADER
   /*    released.                                                          */
   /*                                                                       */
   typedef FT_Error
-  (*TT_CharMap_Load_Func)( TT_Face        face,
-                           TT_CMapTable   cmap,
-                           FT_Stream      input );
+  (*TT_CharMap_Load_Func)( TT_Face       face,
+                           TT_CMapTable  cmap,
+                           FT_Stream     input );
 
 
   /*************************************************************************/
@@ -413,8 +413,8 @@ FT_BEGIN_HEADER
   /*    FreeType error code.  0 means success.                             */
   /*                                                                       */
   typedef FT_Error
-  (*TT_CharMap_Free_Func)( TT_Face        face,
-                           TT_CMapTable   cmap );
+  (*TT_CharMap_Free_Func)( TT_Face       face,
+                           TT_CMapTable  cmap );
 
 
   /*************************************************************************/
@@ -471,53 +471,53 @@ FT_BEGIN_HEADER
   /*                                                                       */
   typedef struct  SFNT_Interface_
   {
-    TT_Goto_Table_Func        goto_table;
+    TT_Goto_Table_Func           goto_table;
 
-    TT_Init_Face_Func         init_face;
-    TT_Load_Face_Func         load_face;
-    TT_Done_Face_Func         done_face;
-    SFNT_Get_Interface_Func   get_interface;
+    TT_Init_Face_Func            init_face;
+    TT_Load_Face_Func            load_face;
+    TT_Done_Face_Func            done_face;
+    SFNT_Get_Interface_Func      get_interface;
 
-    TT_Load_Any_Func          load_any;
+    TT_Load_Any_Func             load_any;
     TT_Load_SFNT_HeaderRec_Func  load_sfnt_header;
-    TT_Load_Directory_Func    load_directory;
+    TT_Load_Directory_Func       load_directory;
 
     /* these functions are called by `load_face' but they can also  */
     /* be called from external modules, if there is a need to do so */
-    TT_Load_Table_Func        load_header;
-    TT_Load_Metrics_Func      load_metrics;
-    TT_Load_Table_Func        load_charmaps;
-    TT_Load_Table_Func        load_max_profile;
-    TT_Load_Table_Func        load_os2;
-    TT_Load_Table_Func        load_psnames;
+    TT_Load_Table_Func           load_header;
+    TT_Load_Metrics_Func         load_metrics;
+    TT_Load_Table_Func           load_charmaps;
+    TT_Load_Table_Func           load_max_profile;
+    TT_Load_Table_Func           load_os2;
+    TT_Load_Table_Func           load_psnames;
 
-    TT_Load_Table_Func        load_names;
-    TT_Free_Table_Func        free_names;
+    TT_Load_Table_Func           load_names;
+    TT_Free_Table_Func           free_names;
 
     /* optional tables */
-    TT_Load_Table_Func        load_hdmx;
-    TT_Free_Table_Func        free_hdmx;
+    TT_Load_Table_Func           load_hdmx;
+    TT_Free_Table_Func           free_hdmx;
 
-    TT_Load_Table_Func        load_kerning;
-    TT_Load_Table_Func        load_gasp;
-    TT_Load_Table_Func        load_pclt;
+    TT_Load_Table_Func           load_kerning;
+    TT_Load_Table_Func           load_gasp;
+    TT_Load_Table_Func           load_pclt;
 
     /* see `ttload.h' */
-    TT_Load_Table_Func        load_bitmap_header;
+    TT_Load_Table_Func           load_bitmap_header;
 
     /* see `ttsbit.h' */
-    TT_Set_SBit_Strike_Func   set_sbit_strike;
-    TT_Load_Table_Func        load_sbits;
-    TT_Load_SBit_Image_Func   load_sbit_image;
-    TT_Free_Table_Func        free_sbits;
+    TT_Set_SBit_Strike_Func      set_sbit_strike;
+    TT_Load_Table_Func           load_sbits;
+    TT_Load_SBit_Image_Func      load_sbit_image;
+    TT_Free_Table_Func           free_sbits;
 
     /* see `ttpost.h' */
-    TT_Get_PS_Name_Func       get_psname;
-    TT_Free_Table_Func        free_psnames;
+    TT_Get_PS_Name_Func          get_psname;
+    TT_Free_Table_Func           free_psnames;
 
     /* see `ttcmap.h' */
-    TT_CharMap_Load_Func      load_charmap;
-    TT_CharMap_Free_Func      free_charmap;
+    TT_CharMap_Load_Func         load_charmap;
+    TT_CharMap_Free_Func         free_charmap;
 
   } SFNT_Interface;
 
@@ -525,6 +525,7 @@ FT_BEGIN_HEADER
   /* transitional */
   typedef SFNT_Interface*   SFNT_Service;
 
+
 FT_END_HEADER
 
 #endif /* __SFNT_H__ */
diff --git a/include/freetype/internal/t1types.h b/include/freetype/internal/t1types.h
index ea5c072..fbb5bc6 100644
--- a/include/freetype/internal/t1types.h
+++ b/include/freetype/internal/t1types.h
@@ -5,7 +5,7 @@
 /*    Basic Type1/Type2 type definitions and interface (specification      */
 /*    only).                                                               */
 /*                                                                         */
-/*  Copyright 1996-2001 by                                                 */
+/*  Copyright 1996-2001, 2002 by                                           */
 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 /*                                                                         */
 /*  This file is part of the FreeType project, and may only be used,       */
@@ -88,14 +88,9 @@ FT_BEGIN_HEADER
 
   typedef struct  T1_FontRec_
   {
-    /* font info dictionary */
-    PS_FontInfoRec   font_info;
-
-    /* private dictionary */
-    PS_PrivateRec    private_dict;
-
-    /* top-level dictionary */
-    FT_String*       font_name;
+    PS_FontInfoRec   font_info;         /* font info dictionary */
+    PS_PrivateRec    private_dict;      /* private dictionary   */
+    FT_String*       font_name;         /* top-level dictionary */
 
     T1_EncodingType  encoding_type;
     T1_EncodingRec   encoding;
@@ -183,15 +178,15 @@ FT_BEGIN_HEADER
 
   typedef struct  CID_FaceRec_
   {
-    FT_FaceRec        root;
-    void*             psnames;
-    void*             psaux;
-    CID_FaceInfoRec   cid;
-    void*             afm_data;
-    CID_Subrs         subrs;
+    FT_FaceRec       root;
+    void*            psnames;
+    void*            psaux;
+    CID_FaceInfoRec  cid;
+    void*            afm_data;
+    CID_Subrs        subrs;
     
     /* since FT 2.1 - interface to PostScript hinter */
-    void*             pshinter;
+    void*            pshinter;
 
   } CID_FaceRec;
 
diff --git a/include/freetype/internal/tttypes.h b/include/freetype/internal/tttypes.h
index 5beb9e8..6ce2ff7 100644
--- a/include/freetype/internal/tttypes.h
+++ b/include/freetype/internal/tttypes.h
@@ -5,7 +5,7 @@
 /*    Basic SFNT/TrueType type definitions and interface (specification    */
 /*    only).                                                               */
 /*                                                                         */
-/*  Copyright 1996-2001 by                                                 */
+/*  Copyright 1996-2001, 2002 by                                           */
 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 /*                                                                         */
 /*  This file is part of the FreeType project, and may only be used,       */
@@ -86,11 +86,11 @@ FT_BEGIN_HEADER
   /*                                                                       */
   /*    num_tables     :: The number of tables in file.                    */
   /*                                                                       */
-  /*    search_range   :: Must be 16*(max power of 2 <= num_tables).       */
+  /*    search_range   :: Must be `16 * (max power of 2 <= num_tables)'.   */
   /*                                                                       */
-  /*    entry_selector :: Must be log2 of search_range/16.                 */
+  /*    entry_selector :: Must be log2 of `search_range / 16'.             */
   /*                                                                       */
-  /*    range_shift    :: Must be num_tables*16 - search_range.            */
+  /*    range_shift    :: Must be `num_tables * 16 - search_range'.        */
   /*                                                                       */
   typedef struct  SFNT_HeaderRec_
   {
@@ -245,7 +245,8 @@ FT_BEGIN_HEADER
 
   /*************************************************************************/
   /*                                                                       */
-  /* <Type> TT_ShortMetrics                                                */
+  /* <Type>                                                                */
+  /*    TT_ShortMetrics                                                    */
   /*                                                                       */
   /* <Description>                                                         */
   /*    A simple type to model the short metrics of the `hmtx' and `vmtx'  */
@@ -387,9 +388,9 @@ FT_BEGIN_HEADER
   /*                                                                       */
   typedef struct  TT_Gasp_
   {
-    FT_UShort      version;
-    FT_UShort      numRanges;
-    TT_GaspRange   gaspRanges;
+    FT_UShort     version;
+    FT_UShort     numRanges;
+    TT_GaspRange  gaspRanges;
 
   } TT_GaspRec;
 
@@ -667,21 +668,21 @@ FT_BEGIN_HEADER
   /*                                                                       */
   typedef struct  TT_SBit_RangeRec
   {
-    FT_UShort        first_glyph;
-    FT_UShort        last_glyph;
+    FT_UShort           first_glyph;
+    FT_UShort           last_glyph;
 
-    FT_UShort        index_format;
-    FT_UShort        image_format;
-    FT_ULong         image_offset;
+    FT_UShort           index_format;
+    FT_UShort           image_format;
+    FT_ULong            image_offset;
 
-    FT_ULong         image_size;
+    FT_ULong            image_size;
     TT_SBit_MetricsRec  metrics;
-    FT_ULong         num_glyphs;
+    FT_ULong            num_glyphs;
 
-    FT_ULong*        glyph_offsets;
-    FT_UShort*       glyph_codes;
+    FT_ULong*           glyph_offsets;
+    FT_UShort*          glyph_codes;
 
-    FT_ULong         table_offset;
+    FT_ULong            table_offset;
 
   } TT_SBit_RangeRec, *TT_SBit_Range;
 
@@ -689,7 +690,7 @@ FT_BEGIN_HEADER
   /*************************************************************************/
   /*                                                                       */
   /* <Struct>                                                              */
-  /*    TT_SBit_StrikeRec                                                     */
+  /*    TT_SBit_StrikeRec                                                  */
   /*                                                                       */
   /* <Description>                                                         */
   /*    A structure used describe a given bitmap strike in the `EBLC'      */
@@ -803,11 +804,11 @@ FT_BEGIN_HEADER
     TT_SBit_LineMetricsRec  hori;
     TT_SBit_LineMetricsRec  vert;
 
-    FT_Byte               x_ppem;
-    FT_Byte               y_ppem;
+    FT_Byte                 x_ppem;
+    FT_Byte                 y_ppem;
 
-    FT_Byte               x_ppem_substitute;
-    FT_Byte               y_ppem_substitute;
+    FT_Byte                 x_ppem_substitute;
+    FT_Byte                 y_ppem_substitute;
 
   } TT_SBit_ScaleRec, *TT_SBit_Scale;
 
@@ -893,7 +894,7 @@ FT_BEGIN_HEADER
   /*                                                                       */
   typedef struct  TT_Post_NamesRec_
   {
-    FT_Bool       loaded;
+    FT_Bool  loaded;
 
     union
     {
@@ -945,10 +946,8 @@ FT_BEGIN_HEADER
   {
     FT_ULong            language;     /* for Mac fonts (originally ushort) */
 
-    FT_UShort*          subHeaderKeys;
-    /* high byte mapping table            */
-    /* value = subHeader index * 8        */
-
+    FT_UShort*          subHeaderKeys;  /* high byte mapping table     */
+                                        /* value = subHeader index * 8 */
     TT_CMap2SubHeader   subHeaders;
     FT_UShort*          glyphIdArray;
     FT_UShort           numGlyphId;   /* control value */
@@ -970,18 +969,18 @@ FT_BEGIN_HEADER
 
   typedef struct  TT_CMap4Rec_
   {
-    FT_ULong          language;       /* for Mac fonts (originally ushort) */
+    FT_ULong         language;       /* for Mac fonts (originally ushort) */
 
-    FT_UShort         segCountX2;     /* number of segments * 2            */
-    FT_UShort         searchRange;    /* these parameters can be used      */
-    FT_UShort         entrySelector;  /* for a binary search               */
-    FT_UShort         rangeShift;
+    FT_UShort        segCountX2;     /* number of segments * 2            */
+    FT_UShort        searchRange;    /* these parameters can be used      */
+    FT_UShort        entrySelector;  /* for a binary search               */
+    FT_UShort        rangeShift;
 
-    TT_CMap4Segment   segments;
-    FT_UShort*        glyphIdArray;
-    FT_UShort         numGlyphId;    /* control value */
+    TT_CMap4Segment  segments;
+    FT_UShort*       glyphIdArray;
+    FT_UShort        numGlyphId;     /* control value */
 
-    TT_CMap4Segment   last_segment;  /* last used segment; this is a small  */
+    TT_CMap4Segment  last_segment;   /* last used segment; this is a small  */
                                      /* cache to potentially increase speed */
   } TT_CMap4Rec, *TT_CMap4;
 
@@ -1018,13 +1017,13 @@ FT_BEGIN_HEADER
 
   typedef struct  TT_CMap8_12Rec_
   {
-    FT_ULong       language;        /* for Mac fonts */
+    FT_ULong      language;        /* for Mac fonts */
 
-    FT_ULong       nGroups;
-    TT_CMapGroup   groups;
+    FT_ULong      nGroups;
+    TT_CMapGroup  groups;
 
-    TT_CMapGroup   last_group;      /* last used group; this is a small    */
-                                    /* cache to potentially increase speed */
+    TT_CMapGroup  last_group;      /* last used group; this is a small    */
+                                   /* cache to potentially increase speed */
   } TT_CMap8_12Rec, *TT_CMap8_12;
 
 
@@ -1046,8 +1045,8 @@ FT_BEGIN_HEADER
 
 
   typedef FT_UInt
-  (*TT_CharMap_Func)( TT_CMapTable   charmap,
-                      FT_ULong       char_code );
+  (*TT_CharMap_Func)( TT_CMapTable  charmap,
+                      FT_ULong      char_code );
 
   typedef FT_ULong
   (*TT_CharNext_Func)( TT_CMapTable  charmap,
@@ -1075,8 +1074,8 @@ FT_BEGIN_HEADER
       TT_CMap10Rec    cmap10;
     } c;
 
-    TT_CharMap_Func  get_index;
-    TT_CharNext_Func get_next_char;
+    TT_CharMap_Func   get_index;
+    TT_CharNext_Func  get_next_char;
     
   } TT_CMapTableRec;
 
@@ -1102,8 +1101,6 @@ FT_BEGIN_HEADER
   } TT_CharMapRec;
 
 
-
-
   /*************************************************************************/
   /*************************************************************************/
   /*************************************************************************/
@@ -1123,7 +1120,7 @@ FT_BEGIN_HEADER
   /* following formats: TTF, OpenType-TT, and OpenType-CFF.                */
   /*                                                                       */
   /* Note, however, that the classes TT_Size, TT_GlyphSlot, and TT_CharMap */
-  /* are not shared between font drivers, and are thus defined normally in */
+  /* are not shared between font drivers, and are thus defined in          */
   /* `ttobjs.h'.                                                           */
   /*                                                                       */
   /*************************************************************************/
@@ -1220,16 +1217,16 @@ FT_BEGIN_HEADER
   /*    FreeType error code.  0 means success.                             */
   /*                                                                       */
   /* <Note>                                                                */
-  /*    This function is normally equivalent to FT_STREAM_SEEK(offset)          */
-  /*    followed by FT_FRAME_ENTER(byte_count) with the loader's stream, but */
-  /*    alternative formats (e.g. compressed ones) might use something     */
+  /*    This function is normally equivalent to FT_STREAM_SEEK(offset)     */
+  /*    followed by FT_FRAME_ENTER(byte_count) with the loader's stream,   */
+  /*    but alternative formats (e.g. compressed ones) might use something */
   /*    different.                                                         */
   /*                                                                       */
   typedef FT_Error
-  (*TT_Loader_StartGlyphFunc)( TT_Loader   loader,
-                                 FT_UInt     glyph_index,
-                                 FT_ULong    offset,
-                                 FT_UInt     byte_count );
+  (*TT_Loader_StartGlyphFunc)( TT_Loader  loader,
+                               FT_UInt    glyph_index,
+                               FT_ULong   offset,
+                               FT_UInt    byte_count );
 
 
   /*************************************************************************/
@@ -1248,7 +1245,7 @@ FT_BEGIN_HEADER
   /*    FreeType error code.  0 means success.                             */
   /*                                                                       */
   typedef FT_Error
-  (*TT_Loader_ReadGlyphFunc)( TT_Loader   loader );
+  (*TT_Loader_ReadGlyphFunc)( TT_Loader  loader );
 
 
   /*************************************************************************/
@@ -1263,8 +1260,7 @@ FT_BEGIN_HEADER
   /*    loader :: The current TrueType glyph loader object.                */
   /*                                                                       */
   typedef void
-  (*TT_Loader_EndGlyphFunc)( TT_Loader   loader );
-
+  (*TT_Loader_EndGlyphFunc)( TT_Loader  loader );
 
 
   /*************************************************************************/
@@ -1337,6 +1333,10 @@ FT_BEGIN_HEADER
   /*                            not loaded by the driver on face opening.  */
   /*                            See the `ttpost' module for more details.  */
   /*                                                                       */
+  /*    cmap_table           :: XXX                                        */
+  /*                                                                       */
+  /*    cmap_size            :: XXX                                        */
+  /*                                                                       */
   /*    num_charmaps         :: The number of character mappings in the    */
   /*                            font.                                      */
   /*                                                                       */
@@ -1355,14 +1355,14 @@ FT_BEGIN_HEADER
   /*                                                                       */
   /*    access_glyph_frame   :: XXX                                        */
   /*                                                                       */
+  /*    forget_glyph_frame   :: XXX                                        */
+  /*                                                                       */
   /*    read_glyph_header    :: XXX                                        */
   /*                                                                       */
   /*    read_simple_glyph    :: XXX                                        */
   /*                                                                       */
   /*    read_composite_glyph :: XXX                                        */
   /*                                                                       */
-  /*    forget_glyph_frame   :: XXX                                        */
-  /*                                                                       */
   /*    sfnt                 :: A pointer to the SFNT `driver' interface.  */
   /*                                                                       */
   /*    psnames              :: A pointer to the `PSNames' module          */
@@ -1433,15 +1433,12 @@ FT_BEGIN_HEADER
   /*    num_kern_pairs       :: The number of kerning pairs present in the */
   /*                            font file.  The engine only loads the      */
   /*                            first horizontal format 0 kern table it    */
-  /*                            finds in the font file.  You should use    */
-  /*                            the `ttxkern' structures if you want to    */
-  /*                            access other kerning tables.  Ignored      */
-  /*                            for Type 2 fonts.                          */
+  /*                            finds in the font file.  Ignored for       */
+  /*                            Type 2 fonts.                              */
   /*                                                                       */
   /*    kern_table_index     :: The index of the kerning table in the font */
-  /*                            kerning directory.  Only used by the       */
-  /*                            ttxkern extension to avoid data            */
-  /*                            duplication.  Ignored for Type 2 fonts.    */
+  /*                            kerning directory.  Ignored for Type 2     */
+  /*                            fonts.                                     */
   /*                                                                       */
   /*    interpreter          :: A pointer to the TrueType bytecode         */
   /*                            interpreters field is also used to hook    */
@@ -1451,56 +1448,56 @@ FT_BEGIN_HEADER
   /*                                                                       */
   typedef struct  TT_FaceRec_
   {
-    FT_FaceRec         root;
+    FT_FaceRec            root;
 
-    TTC_HeaderRec      ttc_header;
+    TTC_HeaderRec         ttc_header;
 
-    FT_ULong           format_tag;
-    FT_UShort          num_tables;
-    TT_Table           dir_tables;
+    FT_ULong              format_tag;
+    FT_UShort             num_tables;
+    TT_Table              dir_tables;
 
-    TT_Header          header;       /* TrueType header table          */
-    TT_HoriHeader      horizontal;   /* TrueType horizontal header     */
+    TT_Header             header;       /* TrueType header table          */
+    TT_HoriHeader         horizontal;   /* TrueType horizontal header     */
 
-    TT_MaxProfile      max_profile;
-    FT_ULong           max_components;
+    TT_MaxProfile         max_profile;
+    FT_ULong              max_components;
 
-    FT_Bool            vertical_info;
-    TT_VertHeader      vertical;     /* TT Vertical header, if present */
+    FT_Bool               vertical_info;
+    TT_VertHeader         vertical;     /* TT Vertical header, if present */
 
-    FT_UShort          num_names;    /* number of name records  */
-    TT_NameTableRec    name_table;   /* name table              */
+    FT_UShort             num_names;    /* number of name records  */
+    TT_NameTableRec       name_table;   /* name table              */
 
-    TT_OS2             os2;          /* TrueType OS/2 table            */
-    TT_Postscript      postscript;   /* TrueType Postscript table      */
+    TT_OS2                os2;          /* TrueType OS/2 table            */
+    TT_Postscript         postscript;   /* TrueType Postscript table      */
 
 #ifdef FT_CONFIG_OPTION_USE_CMAPS
 
-    FT_Byte*           cmap_table;   /* extracted 'cmap' table */
-    FT_ULong           cmap_size;
+    FT_Byte*              cmap_table;   /* extracted 'cmap' table */
+    FT_ULong              cmap_size;
 
 #else /* !FT_CONFIG_OPTION_USE_CMAPS */
 
-    FT_Int             num_charmaps;
-    TT_CharMap         charmaps;     /* array of TT_CharMapRec */
+    FT_Int                num_charmaps;
+    TT_CharMap            charmaps;     /* array of TT_CharMapRec */
 
 #endif /* !FT_CONFIG_OPTION_USE_CMAPS */
 
-    TT_Goto_Table_Func          goto_table;
+    TT_Goto_Table_Func        goto_table;
 
-    TT_Loader_StartGlyphFunc    access_glyph_frame;
-    TT_Loader_EndGlyphFunc      forget_glyph_frame;
-    TT_Loader_ReadGlyphFunc     read_glyph_header;
-    TT_Loader_ReadGlyphFunc     read_simple_glyph;
-    TT_Loader_ReadGlyphFunc     read_composite_glyph;
+    TT_Loader_StartGlyphFunc  access_glyph_frame;
+    TT_Loader_EndGlyphFunc    forget_glyph_frame;
+    TT_Loader_ReadGlyphFunc   read_glyph_header;
+    TT_Loader_ReadGlyphFunc   read_simple_glyph;
+    TT_Loader_ReadGlyphFunc   read_composite_glyph;
 
     /* a typeless pointer to the SFNT_Interface table used to load     */
     /* the basic TrueType tables in the face object                    */
-    void*              sfnt;
+    void*                 sfnt;
 
     /* a typeless pointer to the PSNames_Interface table used to       */
     /* handle glyph names <-> unicode & Mac values                     */
-    void*              psnames;
+    void*                 psnames;
 
     /***********************************************************************/
     /*                                                                     */
@@ -1509,20 +1506,20 @@ FT_BEGIN_HEADER
     /***********************************************************************/
 
     /* horizontal device metrics */
-    TT_HdmxRec         hdmx;
+    TT_HdmxRec            hdmx;
 
     /* grid-fitting and scaling table */
-    TT_GaspRec         gasp;                 /* the `gasp' table */
+    TT_GaspRec            gasp;                 /* the `gasp' table */
 
     /* PCL 5 table */
-    TT_PCLT            pclt;
+    TT_PCLT               pclt;
 
     /* embedded bitmaps support */
-    FT_Int             num_sbit_strikes;
-    TT_SBit_Strike     sbit_strikes;
+    FT_Int                num_sbit_strikes;
+    TT_SBit_Strike        sbit_strikes;
 
-    FT_Int             num_sbit_scales;
-    TT_SBit_Scale      sbit_scales;
+    FT_Int                num_sbit_scales;
+    TT_SBit_Scale         sbit_scales;
 
     /* postscript names table */
     TT_Post_NamesRec      postscript_names;
@@ -1535,29 +1532,29 @@ FT_BEGIN_HEADER
     /***********************************************************************/
 
     /* the glyph locations */
-    FT_UShort          num_locations;
-    FT_Long*           glyph_locations;
+    FT_UShort             num_locations;
+    FT_Long*              glyph_locations;
 
     /* the font program, if any */
-    FT_ULong           font_program_size;
-    FT_Byte*           font_program;
+    FT_ULong              font_program_size;
+    FT_Byte*              font_program;
 
     /* the cvt program, if any */
-    FT_ULong           cvt_program_size;
-    FT_Byte*           cvt_program;
+    FT_ULong              cvt_program_size;
+    FT_Byte*              cvt_program;
 
     /* the original, unscaled, control value table */
-    FT_ULong           cvt_size;
-    FT_Short*          cvt;
+    FT_ULong              cvt_size;
+    FT_Short*             cvt;
 
     /* the format 0 kerning table, if any */
-    FT_Int             num_kern_pairs;
-    FT_Int             kern_table_index;
-    TT_Kern0_Pair      kern_pairs;
+    FT_Int                num_kern_pairs;
+    FT_Int                kern_table_index;
+    TT_Kern0_Pair         kern_pairs;
 
     /* A pointer to the bytecode interpreter to use.  This is also */
     /* used to hook the debugger for the `ttdebug' utility.        */
-    TT_Interpreter     interpreter;
+    TT_Interpreter        interpreter;
 
 
     /***********************************************************************/
@@ -1567,7 +1564,7 @@ FT_BEGIN_HEADER
     /*                                                                     */
     /***********************************************************************/
 
-    FT_Generic         extra;
+    FT_Generic            extra;
 
   } TT_FaceRec;
 
diff --git a/include/freetype/t1tables.h b/include/freetype/t1tables.h
index 2cd928e..951a133 100644
--- a/include/freetype/t1tables.h
+++ b/include/freetype/t1tables.h
@@ -5,7 +5,7 @@
 /*    Basic Type 1/Type 2 tables definitions and interface (specification  */
 /*    only).                                                               */
 /*                                                                         */
-/*  Copyright 1996-2001 by                                                 */
+/*  Copyright 1996-2001, 2002 by                                           */
 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 /*                                                                         */
 /*  This file is part of the FreeType project, and may only be used,       */
@@ -81,11 +81,11 @@ FT_BEGIN_HEADER
   /*    T1_FontInfo                                                        */
   /*                                                                       */
   /* <Description>                                                         */
-  /*    this type is equivalent to @PS_FontInfoRec but has been deprecated */
-  /*    it is kept to maintain source compatibility between various        */
-  /*    versions of FreeType                                               */
+  /*    This type is equivalent to @PS_FontInfoRec.  It is deprecated but  */
+  /*    kept to maintain source compatibility between various versions of  */
+  /*    FreeType.                                                          */
   /*                                                                       */
-  typedef PS_FontInfoRec   T1_FontInfo;
+  typedef PS_FontInfoRec  T1_FontInfo;
 
 
   /*************************************************************************/
@@ -94,9 +94,9 @@ FT_BEGIN_HEADER
   /*    PS_PrivateRec                                                      */
   /*                                                                       */
   /* <Description>                                                         */
-  /*    A structure used to model a Type1/Type2 private dictionary. Note   */
+  /*    A structure used to model a Type1/Type2 private dictionary.  Note  */
   /*    that for Multiple Master fonts, each instance has its own Private  */
-  /*    dict.                                                              */
+  /*    dictionary.                                                        */
   /*                                                                       */
   typedef struct  PS_PrivateRec_
   {
@@ -143,9 +143,9 @@ FT_BEGIN_HEADER
   /*    T1_Private                                                         */
   /*                                                                       */
   /* <Description>                                                         */
-  /*   this type is equivalent to @PS_PrivateRec but has been deprecated   */
-  /*   it is kept to maintain source compatibility between various         */
-  /*   versions of FreeType                                                */
+  /*   This type is equivalent to @PS_PrivateRec.  It is deprecated but    */
+  /*   kept to maintain source compatibility between various versions of   */
+  /*   FreeType.                                                           */
   /*                                                                       */
   typedef PS_PrivateRec  T1_Private;
 
@@ -186,22 +186,22 @@ FT_BEGIN_HEADER
   } T1_Blend_Flags;
 
 
- /* backwards compatible definitions */
-#define  t1_blend_underline_position   T1_BLEND_UNDERLINE_POSITION
-#define  t1_blend_underline_thickness  T1_BLEND_UNDERLINE_THICKNESS
-#define  t1_blend_italic_angle         T1_BLEND_ITALIC_ANGLE
-#define  t1_blend_blue_values          T1_BLEND_BLUE_VALUES
-#define  t1_blend_other_blues          T1_BLEND_OTHER_BLUES
-#define  t1_blend_standard_widths      T1_BLEND_STANDARD_WIDTH
-#define  t1_blend_standard_height      T1_BLEND_STANDARD_HEIGHT
-#define  t1_blend_stem_snap_widths     T1_BLEND_STEM_SNAP_WIDTHS
-#define  t1_blend_stem_snap_heights    T1_BLEND_STEM_SNAP_HEIGHTS
-#define  t1_blend_blue_scale           T1_BLEND_BLUE_SCALE
-#define  t1_blend_blue_shift           T1_BLEND_BLUE_SHIFT
-#define  t1_blend_family_blues         T1_BLEND_FAMILY_BLUES
-#define  t1_blend_family_other_blues   T1_BLEND_FAMILY_OTHER_BLUES
-#define  t1_blend_force_bold           T1_BLEND_FORCE_BOLD
-#define  t1_blend_max                  T1_BELND_MAX
+  /* backwards compatible definitions */
+#define t1_blend_underline_position   T1_BLEND_UNDERLINE_POSITION
+#define t1_blend_underline_thickness  T1_BLEND_UNDERLINE_THICKNESS
+#define t1_blend_italic_angle         T1_BLEND_ITALIC_ANGLE
+#define t1_blend_blue_values          T1_BLEND_BLUE_VALUES
+#define t1_blend_other_blues          T1_BLEND_OTHER_BLUES
+#define t1_blend_standard_widths      T1_BLEND_STANDARD_WIDTH
+#define t1_blend_standard_height      T1_BLEND_STANDARD_HEIGHT
+#define t1_blend_stem_snap_widths     T1_BLEND_STEM_SNAP_WIDTHS
+#define t1_blend_stem_snap_heights    T1_BLEND_STEM_SNAP_HEIGHTS
+#define t1_blend_blue_scale           T1_BLEND_BLUE_SCALE
+#define t1_blend_blue_shift           T1_BLEND_BLUE_SHIFT
+#define t1_blend_family_blues         T1_BLEND_FAMILY_BLUES
+#define t1_blend_family_other_blues   T1_BLEND_FAMILY_OTHER_BLUES
+#define t1_blend_force_bold           T1_BLEND_FORCE_BOLD
+#define t1_blend_max                  T1_BLEND_MAX
 
 
   /* maximum number of Multiple Masters designs, as defined in the spec */
@@ -223,8 +223,8 @@ FT_BEGIN_HEADER
 
   } PS_DesignMapRec, *PS_DesignMap;
 
- /* backwards-compatible definition */
-  typedef PS_DesignMapRec   T1_DesignMap;
+  /* backwards-compatible definition */
+  typedef PS_DesignMapRec  T1_DesignMap;
 
 
   typedef struct  PS_BlendRec_
@@ -247,8 +247,8 @@ FT_BEGIN_HEADER
   } PS_BlendRec, *PS_Blend;
 
 
- /* backwards-compatible definition */
-  typedef PS_BlendRec   T1_Blend;
+  /* backwards-compatible definition */
+  typedef PS_BlendRec  T1_Blend;
 
 
   typedef struct  CID_FaceDictRec_
@@ -272,8 +272,8 @@ FT_BEGIN_HEADER
   } CID_FaceDictRec, *CID_FaceDict;
 
 
- /* backwards-compatible definition */
-  typedef CID_FaceDictRec   CID_FontDict;
+  /* backwards-compatible definition */
+  typedef CID_FaceDictRec  CID_FontDict;
 
 
   typedef struct  CID_FaceInfoRec_
@@ -293,7 +293,6 @@ FT_BEGIN_HEADER
     FT_Int          num_xuid;
     FT_ULong        xuid[16];
 
-
     FT_ULong        cidmap_offset;
     FT_Int          fd_bytes;
     FT_Int          gd_bytes;
@@ -313,11 +312,11 @@ FT_BEGIN_HEADER
   /*    CID_Info                                                           */
   /*                                                                       */
   /* <Description>                                                         */
-  /*   this type is equivalent to @CID_FaceInfoRec but has been deprecated */
-  /*   it is kept to maintain source compatibility between various         */
-  /*   versions of FreeType                                                */
+  /*   This type is equivalent to @CID_FaceInfoRec. It is deprecated but   */
+  /*   kept to maintain source compatibility between various versions of   */
+  /*   FreeType.                                                           */
   /*                                                                       */
-  typedef CID_FaceInfoRec   CID_Info;
+  typedef CID_FaceInfoRec  CID_Info;
   
   /* */
 
diff --git a/src/autohint/ahangles.c b/src/autohint/ahangles.c
index 80d77d5..1a13b27 100644
--- a/src/autohint/ahangles.c
+++ b/src/autohint/ahangles.c
@@ -5,7 +5,7 @@
 /*    A routine used to compute vector angles with limited accuracy        */
 /*    and very high speed (body).                                          */
 /*                                                                         */
-/*  Copyright 2000-2001 Catharon Productions Inc.                          */
+/*  Copyright 2000-2001, 2002 Catharon Productions Inc.                    */
 /*  Author: David Turner                                                   */
 /*                                                                         */
 /*  This file is part of the Catharon Typography Project and shall only    */
diff --git a/src/autohint/ahangles.h b/src/autohint/ahangles.h
index a74a4b0..d509e00 100644
--- a/src/autohint/ahangles.h
+++ b/src/autohint/ahangles.h
@@ -5,7 +5,7 @@
 /*    A routine used to compute vector angles with limited accuracy        */
 /*    and very high speed (specification).                                 */
 /*                                                                         */
-/*  Copyright 2000-2001 Catharon Productions Inc.                          */
+/*  Copyright 2000-2001, 2002 Catharon Productions Inc.                    */
 /*  Author: David Turner                                                   */
 /*                                                                         */
 /*  This file is part of the Catharon Typography Project and shall only    */
diff --git a/src/autohint/ahglobal.c b/src/autohint/ahglobal.c
index 0619bb5..93bb91a 100644
--- a/src/autohint/ahglobal.c
+++ b/src/autohint/ahglobal.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    Routines used to compute global metrics automatically (body).        */
 /*                                                                         */
-/*  Copyright 2000-2001 Catharon Productions Inc.                          */
+/*  Copyright 2000-2001, 2002 Catharon Productions Inc.                    */
 /*  Author: David Turner                                                   */
 /*                                                                         */
 /*  This file is part of the Catharon Typography Project and shall only    */
diff --git a/src/autohint/ahglobal.h b/src/autohint/ahglobal.h
index 15645db..6dbd711 100644
--- a/src/autohint/ahglobal.h
+++ b/src/autohint/ahglobal.h
@@ -5,7 +5,7 @@
 /*    Routines used to compute global metrics automatically                */
 /*    (specification).                                                     */
 /*                                                                         */
-/*  Copyright 2000-2001 Catharon Productions Inc.                          */
+/*  Copyright 2000-2001, 2002 Catharon Productions Inc.                    */
 /*  Author: David Turner                                                   */
 /*                                                                         */
 /*  This file is part of the Catharon Typography Project and shall only    */
@@ -37,7 +37,8 @@ FT_BEGIN_HEADER
 
 
   /* compute global metrics automatically */
-  FT_LOCAL( FT_Error )  ah_hinter_compute_globals( AH_Hinter*  hinter );
+  FT_LOCAL( FT_Error )
+  ah_hinter_compute_globals( AH_Hinter*  hinter );
 
 
 FT_END_HEADER
diff --git a/src/autohint/ahglyph.c b/src/autohint/ahglyph.c
index 75fcbcf..ea6ecc2 100644
--- a/src/autohint/ahglyph.c
+++ b/src/autohint/ahglyph.c
@@ -5,7 +5,7 @@
 /*    Routines used to load and analyze a given glyph before hinting       */
 /*    (body).                                                              */
 /*                                                                         */
-/*  Copyright 2000-2001 Catharon Productions Inc.                          */
+/*  Copyright 2000-2001, 2002 Catharon Productions Inc.                    */
 /*  Author: David Turner                                                   */
 /*                                                                         */
 /*  This file is part of the Catharon Typography Project and shall only    */
@@ -39,6 +39,7 @@
     AH_Segment*  segments;
     FT_Int       dimension;
 
+
     edges      = outline->horz_edges;
     edge_limit = edges + outline->num_hedges;
     segments   = outline->horz_segments;
diff --git a/src/autohint/ahglyph.h b/src/autohint/ahglyph.h
index 77ee3d8..8089f41 100644
--- a/src/autohint/ahglyph.h
+++ b/src/autohint/ahglyph.h
@@ -5,7 +5,7 @@
 /*    Routines used to load and analyze a given glyph before hinting       */
 /*    (specification).                                                     */
 /*                                                                         */
-/*  Copyright 2000-2001 Catharon Productions Inc.                          */
+/*  Copyright 2000-2001, 2002 Catharon Productions Inc.                    */
 /*  Author: David Turner                                                   */
 /*                                                                         */
 /*  This file is part of the Catharon Typography Project and shall only    */
diff --git a/src/autohint/ahhint.c b/src/autohint/ahhint.c
index d2a8e90..be5c0a2 100644
--- a/src/autohint/ahhint.c
+++ b/src/autohint/ahhint.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    Glyph hinter (body).                                                 */
 /*                                                                         */
-/*  Copyright 2000-2001 Catharon Productions Inc.                          */
+/*  Copyright 2000-2001, 2002 Catharon Productions Inc.                    */
 /*  Author: David Turner                                                   */
 /*                                                                         */
 /*  This file is part of the Catharon Typography Project and shall only    */
@@ -1068,13 +1068,13 @@
         goto Exit;
 
       FT_MEM_COPY( gloader->current.extra_points, slot->outline.points,
-                slot->outline.n_points * sizeof ( FT_Vector ) );
+                   slot->outline.n_points * sizeof ( FT_Vector ) );
 
       FT_MEM_COPY( gloader->current.outline.contours, slot->outline.contours,
-                slot->outline.n_contours * sizeof ( short ) );
+                   slot->outline.n_contours * sizeof ( short ) );
 
       FT_MEM_COPY( gloader->current.outline.tags, slot->outline.tags,
-                slot->outline.n_points * sizeof ( char ) );
+                   slot->outline.n_points * sizeof ( char ) );
 
       gloader->current.outline.n_points   = slot->outline.n_points;
       gloader->current.outline.n_contours = slot->outline.n_contours;
@@ -1139,8 +1139,8 @@
 
     case ft_glyph_format_composite:
       {
-        FT_UInt       nn, num_subglyphs = slot->num_subglyphs;
-        FT_UInt       num_base_subgs, start_point;
+        FT_UInt      nn, num_subglyphs = slot->num_subglyphs;
+        FT_UInt      num_base_subgs, start_point;
         FT_SubGlyph  subglyph;
 
 
@@ -1152,7 +1152,7 @@
           goto Exit;
 
         FT_MEM_COPY( gloader->current.subglyphs, slot->subglyphs,
-                  num_subglyphs * sizeof ( FT_SubGlyph ) );
+                     num_subglyphs * sizeof ( FT_SubGlyph ) );
 
         gloader->current.num_subglyphs = num_subglyphs;
         num_base_subgs = gloader->base.num_subglyphs;
diff --git a/src/autohint/ahhint.h b/src/autohint/ahhint.h
index 2be96ac..b0857f3 100644
--- a/src/autohint/ahhint.h
+++ b/src/autohint/ahhint.h
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    Glyph hinter (declaration).                                          */
 /*                                                                         */
-/*  Copyright 2000-2001 Catharon Productions Inc.                          */
+/*  Copyright 2000-2001, 2002 Catharon Productions Inc.                    */
 /*  Author: David Turner                                                   */
 /*                                                                         */
 /*  This file is part of the Catharon Typography Project and shall only    */
diff --git a/src/autohint/ahloader.h b/src/autohint/ahloader.h
index 9318c2d..c8e42ef 100644
--- a/src/autohint/ahloader.h
+++ b/src/autohint/ahloader.h
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    Glyph loader for the auto-hinting module (declaration only).         */
 /*                                                                         */
-/*  Copyright 2000-2001 Catharon Productions Inc.                          */
+/*  Copyright 2000-2001, 2002 Catharon Productions Inc.                    */
 /*  Author: David Turner                                                   */
 /*                                                                         */
 /*  This file is part of the Catharon Typography Project and shall only    */
@@ -21,13 +21,8 @@
 
   /*************************************************************************/
   /*                                                                       */
-  /* This defines the AH_GlyphLoader type in two different ways:           */
-  /*                                                                       */
-  /* - If the module is compiled within FreeType 2, the type is simply a   */
-  /*   typedef to FT_GlyphLoader.                                          */
-  /*                                                                       */
-  /* - If the module is compiled as a standalone object, AH_GlyphLoader    */
-  /*   has its own implementation.                                         */
+  /* This defines the AH_GlyphLoader type; it is simply a typedef to       */
+  /* FT_GlyphLoader.                                                       */
   /*                                                                       */
   /*************************************************************************/
 
diff --git a/src/autohint/ahmodule.c b/src/autohint/ahmodule.c
index 66f275d..5da456b 100644
--- a/src/autohint/ahmodule.c
+++ b/src/autohint/ahmodule.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    Auto-hinting module implementation (declaration).                    */
 /*                                                                         */
-/*  Copyright 2000-2001 Catharon Productions Inc.                          */
+/*  Copyright 2000-2001, 2002 Catharon Productions Inc.                    */
 /*  Author: David Turner                                                   */
 /*                                                                         */
 /*  This file is part of the Catharon Typography Project and shall only    */
@@ -25,7 +25,7 @@
 
 
 #ifdef  DEBUG_HINTER
-   extern AH_Hinter*  ah_debug_hinter = NULL;
+   extern AH_Hinter*  ah_debug_hinter       = NULL;
    extern FT_Bool     ah_debug_disable_horz = 0;
    extern FT_Bool     ah_debug_disable_vert = 0;
 #endif
@@ -43,6 +43,7 @@
   {
     FT_Error  error;
 
+
     error = ah_hinter_new( module->root.library, &module->hinter );
 #ifdef DEBUG_HINTER
     if ( !error )
diff --git a/src/autohint/ahoptim.c b/src/autohint/ahoptim.c
index 3a6e075..e99cd1d 100644
--- a/src/autohint/ahoptim.c
+++ b/src/autohint/ahoptim.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    FreeType auto hinting outline optimization (body).                   */
 /*                                                                         */
-/*  Copyright 2000-2001 Catharon Productions Inc.                          */
+/*  Copyright 2000-2001, 2002 Catharon Productions Inc.                    */
 /*  Author: David Turner                                                   */
 /*                                                                         */
 /*  This file is part of the Catharon Typography Project and shall only    */
@@ -32,11 +32,11 @@
 
 
 #include <ft2build.h>
-#include FT_INTERNAL_OBJECTS_H        /* for FT_ALLOC_ARRAY() and FT_FREE() */
+#include FT_INTERNAL_OBJECTS_H       /* for FT_ALLOC_ARRAY() and FT_FREE() */
 #include "ahoptim.h"
 
 
-  /* define this macro to use brute force optimisation -- this is slow,  */
+  /* define this macro to use brute force optimization -- this is slow,  */
   /* but a good way to perfect the distortion function `by hand' through */
   /* tweaking                                                            */
 #define AH_BRUTE_FORCE
@@ -65,6 +65,7 @@
 
 #define FLOAT( x )  ( (float)( (x) / 64.0 ) )
 
+
   static void
   optim_log( const char*  fmt, ... )
   {
diff --git a/src/autohint/ahtypes.h b/src/autohint/ahtypes.h
index c05de7f..60f278d 100644
--- a/src/autohint/ahtypes.h
+++ b/src/autohint/ahtypes.h
@@ -5,7 +5,7 @@
 /*    General types and definitions for the auto-hint module               */
 /*    (specification only).                                                */
 /*                                                                         */
-/*  Copyright 2000-2001 Catharon Productions Inc.                          */
+/*  Copyright 2000-2001, 2002 Catharon Productions Inc.                    */
 /*  Author: David Turner                                                   */
 /*                                                                         */
 /*  This file is part of the Catharon Typography Project and shall only    */
@@ -207,7 +207,7 @@ FT_BEGIN_HEADER
   /*                                                                       */
   /*    prev      :: The previous point in same contour.                   */
   /*                                                                       */
-  struct AH_Point
+  struct  AH_Point
   {
     AH_Flags      flags;    /* point flags used by hinter */
     FT_Pos        ox, oy;
@@ -420,14 +420,14 @@ FT_BEGIN_HEADER
   /*                                                                       */
   typedef struct  AH_Globals_
   {
-    FT_Int    num_widths;
-    FT_Int    num_heights;
+    FT_Int  num_widths;
+    FT_Int  num_heights;
 
-    FT_Pos    widths [AH_MAX_WIDTHS];
-    FT_Pos    heights[AH_MAX_HEIGHTS];
+    FT_Pos  widths [AH_MAX_WIDTHS];
+    FT_Pos  heights[AH_MAX_HEIGHTS];
 
-    FT_Pos    blue_refs  [ah_blue_max];
-    FT_Pos    blue_shoots[ah_blue_max];
+    FT_Pos  blue_refs  [ah_blue_max];
+    FT_Pos  blue_shoots[ah_blue_max];
 
   } AH_Globals;
 
@@ -488,14 +488,15 @@ FT_BEGIN_HEADER
   } AH_Hinter;
 
 
-#ifdef    DEBUG_HINTER
-  extern AH_Hinter*   ah_debug_hinter;
-  extern FT_Bool      ah_debug_disable_horz;
-  extern FT_Bool      ah_debug_disable_vert;
+#ifdef  DEBUG_HINTER
+  extern AH_Hinter*  ah_debug_hinter;
+  extern FT_Bool     ah_debug_disable_horz;
+  extern FT_Bool     ah_debug_disable_vert;
 #else
-# define ah_debug_disable_horz   0
-# define ah_debug_disable_vert   0
-#endif  /* DEBUG_HINTER */
+#define ah_debug_disable_horz  0
+#define ah_debug_disable_vert  0
+#endif /* DEBUG_HINTER */
+
 
 FT_END_HEADER
 
diff --git a/src/autohint/descrip.mms b/src/autohint/descrip.mms
index e84b411..72039cc 100644
--- a/src/autohint/descrip.mms
+++ b/src/autohint/descrip.mms
@@ -3,7 +3,7 @@
 #
 
 
-# Copyright 2001 Catharon Productions Inc.
+# Copyright 2001, 2002 Catharon Productions Inc.
 #
 # This file is part of the Catharon Typography Project and shall only
 # be used, modified, and distributed under the terms of the Catharon
diff --git a/src/autohint/rules.mk b/src/autohint/rules.mk
index 5b8d46c..6dcaa20 100644
--- a/src/autohint/rules.mk
+++ b/src/autohint/rules.mk
@@ -3,7 +3,7 @@
 #
 
 
-# Copyright 2000 Catharon Productions Inc.
+# Copyright 2000, 2001 Catharon Productions Inc.
 # Author: David Turner
 #
 # This file is part of the Catharon Typography Project and shall only
diff --git a/src/base/Jamfile b/src/base/Jamfile
index 6b9de21..b883f0e 100644
--- a/src/base/Jamfile
+++ b/src/base/Jamfile
@@ -1,4 +1,4 @@
-# FreeType 2 src/base Jamfile (c) 2001 David Turner
+# FreeType 2 src/base Jamfile (c) 2001, 2002 David Turner
 #
 
 SubDir  FT2_TOP src base ;
diff --git a/src/base/ftapi.c b/src/base/ftapi.c
index e97bc54..1ef3005 100644
--- a/src/base/ftapi.c
+++ b/src/base/ftapi.c
@@ -1,10 +1,10 @@
 /***************************************************************************/
 /*                                                                         */
-/*  ftobjs.c                                                               */
+/*  ftapi.c                                                                */
 /*                                                                         */
-/*    The FreeType private base classes (body).                            */
+/*    The FreeType compatibility functions (body).                         */
 /*                                                                         */
-/*  Copyright 1996-2001 by                                                 */
+/*  Copyright 2002 by                                                      */
 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 /*                                                                         */
 /*  This file is part of the FreeType project, and may only be used,       */
@@ -25,6 +25,7 @@
 #include FT_TRUETYPE_TABLES_H
 #include FT_OUTLINE_H
 
+
   /*************************************************************************/
   /*************************************************************************/
   /*************************************************************************/
diff --git a/src/base/ftbase.c b/src/base/ftbase.c
index 9852d26..4ea846d 100644
--- a/src/base/ftbase.c
+++ b/src/base/ftbase.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    Single object library component (body only).                         */
 /*                                                                         */
-/*  Copyright 1996-2001 by                                                 */
+/*  Copyright 1996-2001, 2002 by                                           */
 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 /*                                                                         */
 /*  This file is part of the FreeType project, and may only be used,       */
@@ -30,4 +30,5 @@
 #include "ftobjs.c"
 #include "ftnames.c"
 
+
 /* END */
diff --git a/src/base/ftcalc.c b/src/base/ftcalc.c
index f02b2f1..7e1282a 100644
--- a/src/base/ftcalc.c
+++ b/src/base/ftcalc.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    Arithmetic computations (body).                                      */
 /*                                                                         */
-/*  Copyright 1996-2001 by                                                 */
+/*  Copyright 1996-2001, 2002 by                                           */
 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 /*                                                                         */
 /*  This file is part of the FreeType project, and may only be used,       */
diff --git a/src/base/ftdbgmem.c b/src/base/ftdbgmem.c
index 6aaa368..3768234 100644
--- a/src/base/ftdbgmem.c
+++ b/src/base/ftdbgmem.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    Memory debugger (body).                                              */
 /*                                                                         */
-/*  Copyright 2001 by                                                      */
+/*  Copyright 2001, 2002 by                                                */
 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 /*                                                                         */
 /*  This file is part of the FreeType project, and may only be used,       */
@@ -43,15 +43,15 @@
     FT_Byte*     address;
     FT_Long      size;     /* < 0 if the block was freed */
 
-   const char*  alloc_file_name;
+    const char*  alloc_file_name;
     FT_Long      alloc_line_no;
 
-   const char*  free_file_name;
+    const char*  free_file_name;
     FT_Long      free_line_no;
 
     FT_MemNode   link;
 
- } FT_MemNodeRec;
+  } FT_MemNodeRec;
 
 
   typedef struct  FT_MemTableRec_
@@ -64,16 +64,16 @@
     FT_ULong         alloc_current;
     FT_ULong         alloc_max;
 
-   const char*      file_name;
+    const char*      file_name;
     FT_Long          line_no;
 
     FT_Memory        memory;
-   FT_Pointer       memory_user;
+    FT_Pointer       memory_user;
     FT_Alloc_Func    alloc;
     FT_Free_Func     free;
     FT_Realloc_Func  realloc;
 
- } FT_MemTableRec;
+  } FT_MemTableRec;
 
 
 #define FT_MEM_SIZE_MIN  7
@@ -270,7 +270,7 @@
       table = NULL;
     }
 
- Exit:
+  Exit:
     return table;
   }
 
diff --git a/src/base/ftgloadr.c b/src/base/ftgloadr.c
index 71acda6..5a2eb51 100644
--- a/src/base/ftgloadr.c
+++ b/src/base/ftgloadr.c
@@ -1,3 +1,21 @@
+/***************************************************************************/
+/*                                                                         */
+/*  ftgloadr.c                                                             */
+/*                                                                         */
+/*    The FreeType glyph loader (body).                                    */
+/*                                                                         */
+/*  Copyright 2002 by                                                      */
+/*  David Turner, Robert Wilhelm, and Werner Lemberg                       */
+/*                                                                         */
+/*  This file is part of the FreeType project, and may only be used,       */
+/*  modified, and distributed under the terms of the FreeType project      */
+/*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
+/*  this file you indicate that you have read the license and              */
+/*  understand and accept it fully.                                        */
+/*                                                                         */
+/***************************************************************************/
+
+
 #include <ft2build.h>
 #include FT_INTERNAL_GLYPH_LOADER_H
 #include FT_INTERNAL_MEMORY_H
@@ -5,6 +23,7 @@
 #undef  FT_COMPONENT
 #define FT_COMPONENT  trace_gloader
 
+
   /*************************************************************************/
   /*************************************************************************/
   /*************************************************************************/
@@ -46,11 +65,11 @@
 
   /* create a new glyph loader */
   FT_BASE_DEF( FT_Error )
-  FT_GlyphLoader_New( FT_Memory         memory,
-                      FT_GlyphLoader   *aloader )
+  FT_GlyphLoader_New( FT_Memory        memory,
+                      FT_GlyphLoader  *aloader )
   {
-    FT_GlyphLoader   loader;
-    FT_Error         error;
+    FT_GlyphLoader  loader;
+    FT_Error        error;
 
 
     if ( !FT_NEW( loader ) )
@@ -64,7 +83,7 @@
 
   /* rewind the glyph loader - reset counters to 0 */
   FT_BASE_DEF( void )
-  FT_GlyphLoader_Rewind( FT_GlyphLoader   loader )
+  FT_GlyphLoader_Rewind( FT_GlyphLoader  loader )
   {
     FT_GlyphLoad  base    = &loader->base;
     FT_GlyphLoad  current = &loader->current;
@@ -81,7 +100,7 @@
   /* reset the glyph loader, frees all allocated tables */
   /* and starts from zero                               */
   FT_BASE_DEF( void )
-  FT_GlyphLoader_Reset( FT_GlyphLoader   loader )
+  FT_GlyphLoader_Reset( FT_GlyphLoader  loader )
   {
     FT_Memory memory = loader->memory;
 
@@ -102,7 +121,7 @@
 
   /* delete a glyph loader */
   FT_BASE_DEF( void )
-  FT_GlyphLoader_Done( FT_GlyphLoader   loader )
+  FT_GlyphLoader_Done( FT_GlyphLoader  loader )
   {
     if ( loader )
     {
@@ -117,7 +136,7 @@
 
   /* re-adjust the `current' outline fields */
   static void
-  FT_GlyphLoader_Adjust_Points( FT_GlyphLoader   loader )
+  FT_GlyphLoader_Adjust_Points( FT_GlyphLoader  loader )
   {
     FT_Outline*  base    = &loader->base.outline;
     FT_Outline*  current = &loader->current.outline;
@@ -135,7 +154,7 @@
 
 
   FT_BASE_DEF( FT_Error )
-  FT_GlyphLoader_CreateExtra( FT_GlyphLoader   loader )
+  FT_GlyphLoader_CreateExtra( FT_GlyphLoader  loader )
   {
     FT_Error   error;
     FT_Memory  memory = loader->memory;
@@ -152,7 +171,7 @@
 
   /* re-adjust the `current' subglyphs field */
   static void
-  FT_GlyphLoader_Adjust_Subglyphs( FT_GlyphLoader   loader )
+  FT_GlyphLoader_Adjust_Subglyphs( FT_GlyphLoader  loader )
   {
     FT_GlyphLoad  base    = &loader->base;
     FT_GlyphLoad  current = &loader->current;
@@ -167,9 +186,9 @@
   /* DOESN'T change the number of points within the loader!                */
   /*                                                                       */
   FT_BASE_DEF( FT_Error )
-  FT_GlyphLoader_CheckPoints( FT_GlyphLoader   loader,
-                               FT_UInt          n_points,
-                               FT_UInt          n_contours )
+  FT_GlyphLoader_CheckPoints( FT_GlyphLoader  loader,
+                               FT_UInt        n_points,
+                               FT_UInt        n_contours )
   {
     FT_Memory    memory  = loader->memory;
     FT_Error     error   = FT_Err_Ok;
@@ -190,11 +209,11 @@
 
       if ( FT_RENEW_ARRAY( base->points, old_max, new_max ) ||
            FT_RENEW_ARRAY( base->tags,   old_max, new_max ) )
-       goto Exit;
+        goto Exit;
 
       if ( loader->use_extra &&
            FT_RENEW_ARRAY( loader->base.extra_points, old_max, new_max ) )
-       goto Exit;
+        goto Exit;
 
       adjust = 1;
       loader->max_points = new_max;
@@ -227,12 +246,12 @@
   /* NOT change the number of subglyphs within the loader!            */
   /*                                                                  */
   FT_BASE_DEF( FT_Error )
-  FT_GlyphLoader_CheckSubGlyphs( FT_GlyphLoader   loader,
-                                  FT_UInt          n_subs )
+  FT_GlyphLoader_CheckSubGlyphs( FT_GlyphLoader  loader,
+                                 FT_UInt         n_subs )
   {
-    FT_Memory  memory = loader->memory;
-    FT_Error   error  = FT_Err_Ok;
-    FT_UInt    new_max, old_max;
+    FT_Memory     memory = loader->memory;
+    FT_Error      error  = FT_Err_Ok;
+    FT_UInt       new_max, old_max;
 
     FT_GlyphLoad  base    = &loader->base;
     FT_GlyphLoad  current = &loader->current;
@@ -258,7 +277,7 @@
 
   /* prepare loader for the addition of a new glyph on top of the base one */
   FT_BASE_DEF( void )
-  FT_GlyphLoader_Prepare( FT_GlyphLoader   loader )
+  FT_GlyphLoader_Prepare( FT_GlyphLoader  loader )
   {
     FT_GlyphLoad  current = &loader->current;
 
@@ -274,14 +293,14 @@
 
   /* add current glyph to the base image - and prepare for another */
   FT_BASE_DEF( void )
-  FT_GlyphLoader_Add( FT_GlyphLoader   loader )
+  FT_GlyphLoader_Add( FT_GlyphLoader  loader )
   {
-    FT_GlyphLoad   base    = &loader->base;
-    FT_GlyphLoad   current = &loader->current;
+    FT_GlyphLoad  base    = &loader->base;
+    FT_GlyphLoad  current = &loader->current;
 
-    FT_UInt        n_curr_contours = current->outline.n_contours;
-    FT_UInt        n_base_points   = base->outline.n_points;
-    FT_UInt        n;
+    FT_UInt       n_curr_contours = current->outline.n_contours;
+    FT_UInt       n_base_points   = base->outline.n_points;
+    FT_UInt       n;
 
 
     base->outline.n_points =
@@ -302,8 +321,8 @@
 
 
   FT_BASE_DEF( FT_Error )
-  FT_GlyphLoader_CopyPoints( FT_GlyphLoader   target,
-                             FT_GlyphLoader   source )
+  FT_GlyphLoader_CopyPoints( FT_GlyphLoader  target,
+                             FT_GlyphLoader  source )
   {
     FT_Error  error;
     FT_UInt   num_points   = source->base.outline.n_points;
@@ -318,16 +337,16 @@
 
 
       FT_MEM_COPY( out->points, in->points,
-                num_points * sizeof ( FT_Vector ) );
+                   num_points * sizeof ( FT_Vector ) );
       FT_MEM_COPY( out->tags, in->tags,
-                num_points * sizeof ( char ) );
+                   num_points * sizeof ( char ) );
       FT_MEM_COPY( out->contours, in->contours,
-                num_contours * sizeof ( short ) );
+                   num_contours * sizeof ( short ) );
 
       /* do we need to copy the extra points? */
       if ( target->use_extra && source->use_extra )
         FT_MEM_COPY( target->base.extra_points, source->base.extra_points,
-                  num_points * sizeof ( FT_Vector ) );
+                     num_points * sizeof ( FT_Vector ) );
 
       out->n_points   = (short)num_points;
       out->n_contours = (short)num_contours;
diff --git a/src/base/ftglyph.c b/src/base/ftglyph.c
index f2e6f7a..1f0989f 100644
--- a/src/base/ftglyph.c
+++ b/src/base/ftglyph.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    FreeType convenience functions to handle glyphs (body).              */
 /*                                                                         */
-/*  Copyright 1996-2001 by                                                 */
+/*  Copyright 1996-2001, 2002 by                                           */
 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 /*                                                                         */
 /*  This file is part of the FreeType project, and may only be used,       */
diff --git a/src/base/ftinit.c b/src/base/ftinit.c
index 8cc0e3b..7b92dc4 100644
--- a/src/base/ftinit.c
+++ b/src/base/ftinit.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    FreeType initialization layer (body).                                */
 /*                                                                         */
-/*  Copyright 1996-2001 by                                                 */
+/*  Copyright 1996-2001, 2002 by                                           */
 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 /*                                                                         */
 /*  This file is part of the FreeType project, and may only be used,       */
diff --git a/src/base/ftlist.c b/src/base/ftlist.c
index 6dbfb09..52687b3 100644
--- a/src/base/ftlist.c
+++ b/src/base/ftlist.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    Generic list support for FreeType (body).                            */
 /*                                                                         */
-/*  Copyright 1996-2001 by                                                 */
+/*  Copyright 1996-2001, 2002 by                                           */
 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 /*                                                                         */
 /*  This file is part of the FreeType project, and may only be used,       */
diff --git a/src/base/ftmac.c b/src/base/ftmac.c
index e9ddc26..9d76b38 100644
--- a/src/base/ftmac.c
+++ b/src/base/ftmac.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    Mac FOND support.  Written by just@letterror.com.                    */
 /*                                                                         */
-/*  Copyright 1996-2001 by                                                 */
+/*  Copyright 1996-2001, 2002 by                                           */
 /*  Just van Rossum, David Turner, Robert Wilhelm, and Werner Lemberg.     */
 /*                                                                         */
 /*  This file is part of the FreeType project, and may only be used,       */
diff --git a/src/base/ftnames.c b/src/base/ftnames.c
index 0b77cca..7e9f1ee 100644
--- a/src/base/ftnames.c
+++ b/src/base/ftnames.c
@@ -7,7 +7,7 @@
 /*                                                                         */
 /*    This is _not_ used to retrieve glyph names!                          */
 /*                                                                         */
-/*  Copyright 1996-2001 by                                                 */
+/*  Copyright 1996-2001, 2002 by                                           */
 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 /*                                                                         */
 /*  This file is part of the FreeType project, and may only be used,       */
diff --git a/src/base/ftobjs.c b/src/base/ftobjs.c
index 2b341b0..a12c13d 100644
--- a/src/base/ftobjs.c
+++ b/src/base/ftobjs.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    The FreeType private base classes (body).                            */
 /*                                                                         */
-/*  Copyright 1996-2001 by                                                 */
+/*  Copyright 1996-2001, 2002 by                                           */
 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 /*                                                                         */
 /*  This file is part of the FreeType project, and may only be used,       */
@@ -28,6 +28,7 @@
 #include <string.h>     /* for strcmp() */
 #include <setjmp.h>     /* for setjmp() and longjmp() */
 
+
   FT_BASE_DEF( void )
   ft_validator_init( FT_Validator        valid,
                      const FT_Byte*      base,
@@ -46,10 +47,12 @@
   {
     int  result;
     
+
     result = setjmp( valid->jump_buffer );
     return result;
   }
 
+
   FT_BASE_DEF( void )
   ft_validator_error( FT_Validator  valid,
                       FT_Error      error )
@@ -72,8 +75,8 @@
   /*************************************************************************/
 
 
- /* create a new input stream from a FT_Open_Args structure */
- /*                                                         */
+  /* create a new input stream from a FT_Open_Args structure */
+  /*                                                         */
   static FT_Error
   ft_input_stream_new( FT_Library     library,
                        FT_Open_Args*  args,
@@ -92,6 +95,7 @@
 
     *astream = 0;
     memory   = library->memory;
+
     if ( FT_NEW( stream ) )
       goto Exit;
 
@@ -101,8 +105,8 @@
     {
       /* create a memory-based stream */
       FT_Stream_OpenMemory( stream,
-                           (const FT_Byte*)args->memory_base,
-                           args->memory_size );
+                            (const FT_Byte*)args->memory_base,
+                            args->memory_size );
     }
     else if ( args->flags & ft_open_pathname )
     {
@@ -134,7 +138,6 @@
   }
 
 
-
   static void
   ft_input_stream_free( FT_Stream  stream,
                         FT_Int     external )
@@ -143,6 +146,7 @@
     {
       FT_Memory  memory = stream->memory;
 
+
       FT_Stream_Close( stream );
 
       if ( !external )
@@ -172,7 +176,7 @@
   ft_glyphslot_init( FT_GlyphSlot  slot )
   {
     FT_Driver         driver = slot->face->driver;
-    FT_Driver_Class  clazz  = driver->clazz;
+    FT_Driver_Class   clazz  = driver->clazz;
     FT_Memory         memory = driver->root.memory;
     FT_Error          error  = FT_Err_Ok;
     FT_Slot_Internal  internal;
@@ -232,7 +236,7 @@
   ft_glyphslot_done( FT_GlyphSlot  slot )
   {
     FT_Driver         driver = slot->face->driver;
-    FT_Driver_Class  clazz  = driver->clazz;
+    FT_Driver_Class   clazz  = driver->clazz;
     FT_Memory         memory = driver->root.memory;
 
 
@@ -262,7 +266,7 @@
   {
     FT_Error          error;
     FT_Driver         driver;
-    FT_Driver_Class  clazz;
+    FT_Driver_Class   clazz;
     FT_Memory         memory;
     FT_GlyphSlot      slot;
 
@@ -305,10 +309,10 @@
   {
     if ( slot )
     {
-      FT_Driver         driver = slot->face->driver;
-      FT_Memory         memory = driver->root.memory;
-      FT_GlyphSlot*     parent;
-      FT_GlyphSlot      cur;
+      FT_Driver      driver = slot->face->driver;
+      FT_Memory      memory = driver->root.memory;
+      FT_GlyphSlot*  parent;
+      FT_GlyphSlot   cur;
 
 
       /* Remove slot from its parent face's list */
@@ -497,6 +501,7 @@
       FT_UInt           EM      = face->units_per_EM;
       FT_Size_Metrics*  metrics = &face->size->metrics;
 
+
       slot->linearHoriAdvance = FT_MulDiv( slot->linearHoriAdvance,
                                            (FT_Long)metrics->x_ppem << 16, EM );
 
@@ -596,19 +601,19 @@
     if ( face->autohint.finalizer )
       face->autohint.finalizer( face->autohint.data );
 
-    /* Discard glyph slots for this face                            */
+    /* Discard glyph slots for this face.                           */
     /* Beware!  FT_Done_GlyphSlot() changes the field `face->glyph' */
     while ( face->glyph )
       FT_Done_GlyphSlot( face->glyph );
 
-    /* Discard all sizes for this face */
+    /* discard all sizes for this face */
     FT_List_Finalize( &face->sizes_list,
                      (FT_List_Destructor)destroy_size,
                      memory,
                      driver );
     face->size = 0;
 
-    /* Now discard client data */
+    /* now discard client data */
     if ( face->generic.finalizer )
       face->generic.finalizer( face );
 
@@ -618,10 +623,12 @@
     {
       FT_Int  n;
       
+
       for ( n = 0; n < face->num_charmaps; n++ )
       {
         FT_CMap  cmap = FT_CMAP( face->charmaps[n] );
         
+
         FT_CMap_Done( cmap );
         
         face->charmaps[n] = NULL;
@@ -639,7 +646,8 @@
       clazz->done_face( face );
 
     /* close the stream for this face if needed */
-    ft_input_stream_free( face->stream,
+    ft_input_stream_free(
+      face->stream,
       ( face->face_flags & FT_FACE_FLAG_EXTERNAL_STREAM ) != 0 );
 
     face->stream = 0;
@@ -1066,13 +1074,13 @@
   FT_New_Size( FT_Face   face,
                FT_Size  *asize )
   {
-    FT_Error          error;
-    FT_Memory         memory;
-    FT_Driver         driver;
+    FT_Error         error;
+    FT_Memory        memory;
+    FT_Driver        driver;
     FT_Driver_Class  clazz;
 
-    FT_Size           size = 0;
-    FT_ListNode       node = 0;
+    FT_Size          size = 0;
+    FT_ListNode      node = 0;
 
 
     if ( !face )
@@ -1200,7 +1208,7 @@
   {
     FT_Error          error = FT_Err_Ok;
     FT_Driver         driver;
-    FT_Driver_Class  clazz;
+    FT_Driver_Class   clazz;
     FT_Size_Metrics*  metrics;
     FT_Long           dim_x, dim_y;
 
@@ -1269,7 +1277,7 @@
   {
     FT_Error          error = FT_Err_Ok;
     FT_Driver         driver;
-    FT_Driver_Class  clazz;
+    FT_Driver_Class   clazz;
     FT_Size_Metrics*  metrics = &face->size->metrics;
 
 
@@ -1435,6 +1443,7 @@
       FT_Face        face   = cmap->charmap.face;
       FT_Memory      memory = FT_FACE_MEMORY(face);
 
+
       if ( clazz->done )
         clazz->done( cmap );
 
@@ -1454,6 +1463,7 @@
     FT_Memory  memory;
     FT_CMap    cmap;
 
+
     if ( clazz == NULL || charmap == NULL || charmap->face == NULL )
       return FT_Err_Invalid_Argument;
 
@@ -1468,7 +1478,7 @@
       if ( clazz->init )
       {
         error = clazz->init( cmap, init_data );
-        if (error)
+        if ( error )
           goto Fail;
       }
 
@@ -1478,7 +1488,7 @@
                            face->num_charmaps+1 ) )
         goto Fail;
 
-      face->charmaps[ face->num_charmaps++ ] = (FT_CharMap) cmap;
+      face->charmaps[face->num_charmaps++] = (FT_CharMap)cmap;
     }
 
   Exit:
@@ -1509,6 +1519,7 @@
     {
       FT_CMap  cmap = FT_CMAP( face->charmap );
       
+
       result = cmap->clazz->char_index( cmap, charcode );
     }
     return  result;
@@ -1516,8 +1527,6 @@
 
 #else /* !FT_CONFIG_OPTION_USE_CMAPS */
 
-
-
   FT_EXPORT_DEF( FT_UInt )
   FT_Get_Char_Index( FT_Face   face,
                      FT_ULong  charcode )
@@ -1543,8 +1552,9 @@
   FT_Get_First_Char( FT_Face   face,
                      FT_UInt  *agindex )
   {
-    FT_ULong   result = 0;
-    FT_UInt    gindex = 0;
+    FT_ULong  result = 0;
+    FT_UInt   gindex = 0;
+
 
     if ( face && face->charmap )
     {
@@ -1569,8 +1579,8 @@
                     FT_ULong  charcode,
                     FT_UInt  *agindex )
   {
-    FT_ULong   result = 0;
-    FT_UInt    gindex = 0;
+    FT_ULong  result = 0;
+    FT_UInt   gindex = 0;
 
 
     if ( face && face->charmap )
@@ -1578,6 +1588,7 @@
       FT_UInt32  code = (FT_UInt32)charcode;
       FT_CMap    cmap = FT_CMAP( face->charmap );
 
+
       gindex = cmap->clazz->char_next( cmap, &code );
       result = ( gindex == 0 ) ? 0 : code;
     }
@@ -1673,8 +1684,8 @@
          FT_HAS_GLYPH_NAMES( face )              )
     {
       /* now, lookup for glyph name */
-      FT_Driver        driver = face->driver;
-      FT_Module_Class* clazz  = FT_MODULE_CLASS( driver );
+      FT_Driver         driver = face->driver;
+      FT_Module_Class*  clazz  = FT_MODULE_CLASS( driver );
 
 
       if ( clazz->get_interface )
@@ -1707,7 +1718,7 @@
     result = face->internal->postscript_name;
     if ( !result )
     {
-      /* now, lookup for glyph name */
+      /* now, look up glyph name */
       FT_Driver         driver = face->driver;
       FT_Module_Class*  clazz  = FT_MODULE_CLASS( driver );
 
@@ -1792,8 +1803,8 @@
                       FT_Glyph_Format  format,
                       FT_ListNode*     node )
   {
-    FT_ListNode   cur;
-    FT_Renderer   result = 0;
+    FT_ListNode  cur;
+    FT_Renderer  result = 0;
 
 
     if ( !library )
@@ -1938,7 +1949,7 @@
   {
     /* test for valid `library' delayed to FT_Lookup_Renderer() */
 
-    return  FT_Lookup_Renderer( library, format, 0 );
+    return FT_Lookup_Renderer( library, format, 0 );
   }
 
 
@@ -2055,7 +2066,7 @@
   FT_Render_Glyph( FT_GlyphSlot  slot,
                    FT_UInt       render_mode )
   {
-    FT_Library   library;
+    FT_Library  library;
 
 
     if ( !slot )
@@ -2205,7 +2216,7 @@
     if ( FT_MODULE_IS_DRIVER( module ) )
     {
       /* allocate glyph loader if needed */
-      FT_Driver   driver = FT_DRIVER( module );
+      FT_Driver  driver = FT_DRIVER( module );
 
 
       driver->clazz = (FT_Driver_Class)module->clazz;
diff --git a/src/base/ftoutln.c b/src/base/ftoutln.c
index d30f695..e2046b7 100644
--- a/src/base/ftoutln.c
+++ b/src/base/ftoutln.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    FreeType outline management (body).                                  */
 /*                                                                         */
-/*  Copyright 1996-2001 by                                                 */
+/*  Copyright 1996-2001, 2002 by                                           */
 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 /*                                                                         */
 /*  This file is part of the FreeType project, and may only be used,       */
@@ -358,13 +358,13 @@
       return FT_Err_Invalid_Argument;
 
     FT_MEM_COPY( target->points, source->points,
-              source->n_points * sizeof ( FT_Vector ) );
+                 source->n_points * sizeof ( FT_Vector ) );
 
     FT_MEM_COPY( target->tags, source->tags,
-              source->n_points * sizeof ( FT_Byte ) );
+                 source->n_points * sizeof ( FT_Byte ) );
 
     FT_MEM_COPY( target->contours, source->contours,
-              source->n_contours * sizeof ( FT_Short ) );
+                 source->n_contours * sizeof ( FT_Short ) );
 
     /* copy all flags, except the `ft_outline_owner' one */
     is_owner      = target->flags & ft_outline_owner;
diff --git a/src/base/ftstream.c b/src/base/ftstream.c
index 9266d50..60e7856 100644
--- a/src/base/ftstream.c
+++ b/src/base/ftstream.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    I/O stream support (body).                                           */
 /*                                                                         */
-/*  Copyright 2000-2001 by                                                 */
+/*  Copyright 2000-2001, 2002 by                                           */
 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 /*                                                                         */
 /*  This file is part of the FreeType project, and may only be used,       */
@@ -69,8 +69,8 @@
     {
       if ( stream->read( stream, pos, 0, 0 ) )
       {
-        FT_ERROR(( "%s: invalid i/o; pos = 0x%lx, size = 0x%lx\n",
-                   "FT_Stream_Seek", pos, stream->size ));
+        FT_ERROR(( "FT_Stream_Seek: invalid i/o; pos = 0x%lx, size = 0x%lx\n",
+                   pos, stream->size ));
 
         error = FT_Err_Invalid_Stream_Operation;
       }
@@ -78,8 +78,8 @@
     /* note that seeking to the first position after the file is valid */
     else if ( pos > stream->size )
     {
-      FT_ERROR(( "%s: invalid i/o; pos = 0x%lx, size = 0x%lx\n",
-                 "FT_Stream_Seek", pos, stream->size ));
+      FT_ERROR(( "FT_Stream_Seek: invalid i/o; pos = 0x%lx, size = 0x%lx\n",
+                 pos, stream->size ));
 
       error = FT_Err_Invalid_Stream_Operation;
     }
@@ -124,8 +124,8 @@
 
     if ( pos >= stream->size )
     {
-      FT_ERROR(( "%s: invalid i/o; pos = 0x%lx, size = 0x%lx\n",
-                 "FT_Stream_ReadAt", pos, stream->size ));
+      FT_ERROR(( "FT_Stream_ReadAt: invalid i/o; pos = 0x%lx, size = 0x%lx\n",
+                 pos, stream->size ));
 
       return FT_Err_Invalid_Stream_Operation;
     }
@@ -145,8 +145,9 @@
 
     if ( read_bytes < count )
     {
-      FT_ERROR(( "%s: invalid read; expected %lu bytes, got %lu\n",
-                 "FT_Stream_ReadAt", count, read_bytes ));
+      FT_ERROR(( "FT_Stream_ReadAt:" ));
+      FT_ERROR(( " invalid read; expected %lu bytes, got %lu\n",
+                 count, read_bytes ));
 
       error = FT_Err_Invalid_Stream_Operation;
     }
@@ -263,7 +264,7 @@
     /*                                                                    */
     /*  In this case, the loader code handles the 0-length table          */
     /*  gracefully; however, stream.cursor is really set to 0 by the      */
-    /*  FT_Stream_EnterFrame() call, and this is not an error.           */
+    /*  FT_Stream_EnterFrame() call, and this is not an error.            */
     /*                                                                    */
     FT_ASSERT( stream );
 
@@ -416,8 +417,8 @@
 
   Fail:
     *error = FT_Err_Invalid_Stream_Operation;
-    FT_ERROR(( "%s: invalid i/o; pos = 0x%lx, size = 0x%lx\n",
-               "FT_Stream_ReadChar", stream->pos, stream->size ));
+    FT_ERROR(( "FT_Stream_ReadChar: invalid i/o; pos = 0x%lx, size = 0x%lx\n",
+               stream->pos, stream->size ));
 
     return 0;
   }
@@ -509,7 +510,7 @@
 
   Fail:
     *error = FT_Err_Invalid_Stream_Operation;
-    FT_ERROR(( "FT_Stream_ReadShort:" ));
+    FT_ERROR(( "FT_Stream_ReadShortLE:" ));
     FT_ERROR(( " invalid i/o; pos = 0x%lx, size = 0x%lx\n",
                stream->pos, stream->size ));
 
@@ -556,8 +557,9 @@
 
   Fail:
     *error = FT_Err_Invalid_Stream_Operation;
-    FT_ERROR(( "%s: invalid i/o; pos = 0x%lx, size = 0x%lx\n",
-               "FT_Stream_ReadOffset", stream->pos, stream->size ));
+    FT_ERROR(( "FT_Stream_ReadOffset:" ));
+    FT_ERROR(( " invalid i/o; pos = 0x%lx, size = 0x%lx\n",
+               stream->pos, stream->size ));
 
     return 0;
   }
@@ -567,7 +569,7 @@
   FT_Stream_ReadLong( FT_Stream  stream,
                       FT_Error*  error )
   {
-       FT_Byte   reads[4];
+    FT_Byte   reads[4];
     FT_Byte*  p = 0;
     FT_Long   result = 0;
 
@@ -601,8 +603,8 @@
     return result;
 
   Fail:
-    FT_ERROR(( "%s: invalid i/o; pos = 0x%lx, size = 0x%lx\n",
-               "FT_Stream_ReadLong", stream->pos, stream->size ));
+    FT_ERROR(( "FT_Stream_ReadLong: invalid i/o; pos = 0x%lx, size = 0x%lx\n",
+               stream->pos, stream->size ));
     *error = FT_Err_Invalid_Stream_Operation;
 
     return 0;
@@ -647,7 +649,7 @@
     return result;
 
   Fail:
-    FT_ERROR(( "FT_Stream_ReadLong:" ));
+    FT_ERROR(( "FT_Stream_ReadLongLE:" ));
     FT_ERROR(( " invalid i/o; pos = 0x%lx, size = 0x%lx\n",
                stream->pos, stream->size ));
     *error = FT_Err_Invalid_Stream_Operation;
diff --git a/src/base/ftutil.c b/src/base/ftutil.c
index 5c3507e..27dfbf0 100644
--- a/src/base/ftutil.c
+++ b/src/base/ftutil.c
@@ -1,3 +1,21 @@
+/***************************************************************************/
+/*                                                                         */
+/*  ftutil.c                                                               */
+/*                                                                         */
+/*    FreeType utility file for memory and list management (body).         */
+/*                                                                         */
+/*  Copyright 2002 by                                                      */
+/*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
+/*                                                                         */
+/*  This file is part of the FreeType project, and may only be used,       */
+/*  modified, and distributed under the terms of the FreeType project      */
+/*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
+/*  this file you indicate that you have read the license and              */
+/*  understand and accept it fully.                                        */
+/*                                                                         */
+/***************************************************************************/
+
+
 #include <ft2build.h>
 #include FT_INTERNAL_DEBUG_H
 #include FT_INTERNAL_MEMORY_H
@@ -309,3 +327,4 @@
   }
 
 
+/* END */
diff --git a/src/base/rules.mk b/src/base/rules.mk
index 6b74753..b89bc80 100644
--- a/src/base/rules.mk
+++ b/src/base/rules.mk
@@ -3,7 +3,7 @@
 #
 
 
-# Copyright 1996-2000 by
+# Copyright 1996-2000, 2002 by
 # David Turner, Robert Wilhelm, and Werner Lemberg.
 #
 # This file is part of the FreeType project, and may only be used, modified,