Commit 48c984b5bb2aa9dfa5bacd0723df2f56187a2fc0

Werner Lemberg 2002-03-30T16:41:09

* src/cff/cffdrivr.c (cff_get_glyph_name): Fix debug message. * src/cff/cffobjs.c (CFF_Driver_Init, CFF_Driver_Done) [TT_CONFIG_OPTION_EXTEND_ENGINE]: Removed. * src/cff/sfobjs.c (SFNT_Load_Face) [TT_CONFIG_OPTION_EXTEND_ENGINE]: Ditto. * src/truetype/ttobjs.c (TT_Init_Driver, TT_Done_Driver) [TT_CONFIG_OPTION_EXTEND_ENGINE]: Ditto. * src/truetype/ttdriver.c, src/truetype/ttobjs.c, src/truetype/ttobjs.h: Renaming driver functions to the FT_<Subject>_<Action> scheme: TT_Init_Driver => TT_Driver_Init TT_Done_Driver => TT_Driver_Done TT_Init_Face => TT_Face_Init TT_Done_Face => TT_Face_Done TT_Init_Size => TT_Size_Init TT_Done_Size => TT_Size_Done TT_Reset_Size => TT_Size_Reset

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
diff --git a/ChangeLog b/ChangeLog
index 9b4146a..3382006 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,16 +1,36 @@
 2002-03-30  David Turner  <david@freetype.org>
 
-        * src/sfnt/sfobjs.c (tt_face_get_name): bug-fix
+	* include/freetype/internal/tttypes.h: Adding comments to some of
+	the TT_FaceRec fields.
 
-        * include/freetype/internal/tttypes.h: adding comments to some of
-          the TT_FaceRec fields.
+	* src/sfnt/ttcmap0.c (TT_Build_CMaps): Removed compiler warnings.
 
-        * src/sfnt/ttcmap0.c (TT_Build_CMaps): removed compiler warnings
+	* src/sfnt/sfobjs.c (tt_face_get_name): Bug-fix.
 
 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.
+	* src/cff/cffdrivr.c (cff_get_glyph_name): Fix debug message.
+
+	* src/cff/cffobjs.c (CFF_Driver_Init, CFF_Driver_Done)
+	[TT_CONFIG_OPTION_EXTEND_ENGINE]: Removed.
+	* src/cff/sfobjs.c (SFNT_Load_Face)
+	[TT_CONFIG_OPTION_EXTEND_ENGINE]: Ditto.
+	* src/truetype/ttobjs.c (TT_Init_Driver, TT_Done_Driver)
+	[TT_CONFIG_OPTION_EXTEND_ENGINE]: Ditto.
+
+	* src/truetype/ttdriver.c, src/truetype/ttobjs.c,
+	src/truetype/ttobjs.h: Renaming driver functions to the
+	FT_<Subject>_<Action> scheme:
+
+	  TT_Init_Driver => TT_Driver_Init
+	  TT_Done_Driver => TT_Driver_Done
+	  TT_Init_Face   => TT_Face_Init
+	  TT_Done_Face   => TT_Face_Done
+	  TT_Init_Size   => TT_Size_Init
+	  TT_Done_Size   => TT_Size_Done
+	  TT_Reset_Size  => TT_Size_Reset
 
 2002-03-29  Werner Lemberg  <wl@gnu.org>
 
@@ -103,6 +123,11 @@
 
 	Also introduced the FT_PEEK_XXXX functions.
 
+	* src/cff/cffobjs.c (CFF_Build_Unicode_Charmap): Removed commented
+	out function.
+	(find_encoding): Removed.
+	(CFF_Face_Init): Remove charmap support.
+
 	* include/freetype/config/ftoption.h (FT_CONFIG_OPTION_USE_CMAPS,
 	TT_CONFIG_CMAP_FORMAT{0,2,4,6,8,10,12}): New macros to fine-tune
 	support of cmaps.
diff --git a/src/cache/descrip.mms b/src/cache/descrip.mms
index b3db22c..ea12f2e 100644
--- a/src/cache/descrip.mms
+++ b/src/cache/descrip.mms
@@ -3,7 +3,7 @@
 #
 
 
-# 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, modified,
diff --git a/src/cache/ftccache.c b/src/cache/ftccache.c
index 09e6cd2..e55dcb7 100644
--- a/src/cache/ftccache.c
+++ b/src/cache/ftccache.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    The FreeType internal cache interface (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,       */
diff --git a/src/cache/ftccmap.c b/src/cache/ftccmap.c
index 9219f64..7dfabc2 100644
--- a/src/cache/ftccmap.c
+++ b/src/cache/ftccmap.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    FreeType CharMap cache (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,       */
diff --git a/src/cache/ftcmanag.c b/src/cache/ftcmanag.c
index 14c9df1..2711540 100644
--- a/src/cache/ftcmanag.c
+++ b/src/cache/ftcmanag.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    FreeType Cache Manager (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,       */
diff --git a/src/cache/ftcsbits.c b/src/cache/ftcsbits.c
index 4b75251..5d18ee1 100644
--- a/src/cache/ftcsbits.c
+++ b/src/cache/ftcsbits.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    FreeType sbits manager (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,       */
diff --git a/src/cache/ftlru.c b/src/cache/ftlru.c
index e91fbda..4a6f603 100644
--- a/src/cache/ftlru.c
+++ b/src/cache/ftlru.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    Simple LRU list-cache (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,       */
diff --git a/src/cache/rules.mk b/src/cache/rules.mk
index fb6a177..a74e780 100644
--- a/src/cache/rules.mk
+++ b/src/cache/rules.mk
@@ -3,7 +3,7 @@
 #
 
 
-# Copyright 2000 by
+# Copyright 2000, 2001 by
 # David Turner, Robert Wilhelm, and Werner Lemberg.
 #
 # This file is part of the FreeType project, and may only be used, modified,
diff --git a/src/cff/cffdrivr.c b/src/cff/cffdrivr.c
index fb150d1..14aa245 100644
--- a/src/cff/cffdrivr.c
+++ b/src/cff/cffdrivr.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    OpenType font driver implementation (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,       */
@@ -228,21 +228,22 @@
                       FT_Pointer  buffer,
                       FT_UInt     buffer_max )
   {
-    CFF_Font           font   = (CFF_Font)face->extra.data;
-    FT_Memory           memory = FT_FACE_MEMORY( face );
-    FT_String*          gname;
-    FT_UShort           sid;
+    CFF_Font         font   = (CFF_Font)face->extra.data;
+    FT_Memory        memory = FT_FACE_MEMORY( face );
+    FT_String*       gname;
+    FT_UShort        sid;
     PSNames_Service  psnames;
-    FT_Error            error;
+    FT_Error         error;
+
 
     psnames = (PSNames_Service)FT_Get_Module_Interface(
                 face->root.driver->root.library, "psnames" );
 
     if ( !psnames )
     {
-      FT_ERROR(( "CFF_Init_Face:" ));
+      FT_ERROR(( "cff_get_glyph_name:" ));
       FT_ERROR(( " cannot open CFF & CEF fonts\n" ));
-      FT_ERROR(( "             " ));
+      FT_ERROR(( "                   " ));
       FT_ERROR(( " without the `PSNames' module\n" ));
       error = CFF_Err_Unknown_File_Format;
       goto Exit;
@@ -293,9 +294,9 @@
   cff_get_char_index( TT_CharMap  charmap,
                       FT_Long     charcode )
   {
-    FT_Error       error;
-    CFF_Face       face;
-    TT_CMapTable   cmap;
+    FT_Error      error;
+    CFF_Face      face;
+    TT_CMapTable  cmap;
 
 
     cmap = &charmap->cmap;
@@ -337,9 +338,9 @@
   cff_get_next_char( TT_CharMap  charmap,
                      FT_Long     charcode )
   {
-    FT_Error       error;
-    CFF_Face       face;
-    TT_CMapTable   cmap;
+    FT_Error      error;
+    CFF_Face      face;
+    TT_CMapTable  cmap;
 
 
     cmap = &charmap->cmap;
@@ -358,7 +359,8 @@
       cmap->loaded = TRUE;
     }
 
-    return ( cmap->get_next_char ? cmap->get_next_char( cmap, charcode ) : 0 );
+    return ( cmap->get_next_char ? cmap->get_next_char( cmap, charcode )
+                                 : 0 );
   }
 
 
@@ -383,8 +385,8 @@
   cff_get_name_index( CFF_Face    face,
                       FT_String*  glyph_name )
   {
-    CFF_Font        cff;
-    CFF_Charset     charset;
+    CFF_Font         cff;
+    CFF_Charset      charset;
     PSNames_Service  psnames;
     FT_Memory        memory = FT_FACE_MEMORY( face );
     FT_String*       name;
@@ -406,7 +408,7 @@
       if ( sid > 390 )
         name = CFF_Get_Name( &cff->string_index, sid - 391 );
       else
-        name = (FT_String *) psnames->adobe_std_strings( sid );
+        name = (FT_String *)psnames->adobe_std_strings( sid );
 
       result = strcmp( glyph_name, name );
 
@@ -439,6 +441,7 @@
   {
     FT_Module  sfnt;
 
+
 #ifndef FT_CONFIG_OPTION_NO_GLYPH_NAMES
 
     if ( strcmp( (const char*)interface, "glyph_name" ) == 0 )
@@ -484,24 +487,24 @@
     sizeof( FT_SizeRec ),
     sizeof( CFF_GlyphSlotRec ),
 
-    (FT_Face_InitFunc)     CFF_Face_Init,
-    (FT_Face_DoneFunc)     CFF_Face_Done,
-    (FT_Size_InitFunc)     CFF_Size_Init,
-    (FT_Size_DoneFunc)     CFF_Size_Done,
-    (FT_Slot_InitFunc)CFF_GlyphSlot_Init,
-    (FT_Slot_DoneFunc)CFF_GlyphSlot_Done,
+    (FT_Face_InitFunc)        CFF_Face_Init,
+    (FT_Face_DoneFunc)        CFF_Face_Done,
+    (FT_Size_InitFunc)        CFF_Size_Init,
+    (FT_Size_DoneFunc)        CFF_Size_Done,
+    (FT_Slot_InitFunc)        CFF_GlyphSlot_Init,
+    (FT_Slot_DoneFunc)        CFF_GlyphSlot_Done,
 
     (FT_Size_ResetPointsFunc) CFF_Size_Reset,
-    (FT_Size_ResetPixelsFunc)CFF_Size_Reset,
+    (FT_Size_ResetPixelsFunc) CFF_Size_Reset,
 
-    (FT_Slot_LoadFunc)    Load_Glyph,
-    (FT_CharMap_CharIndexFunc) cff_get_char_index,
+    (FT_Slot_LoadFunc)        Load_Glyph,
+    (FT_CharMap_CharIndexFunc)cff_get_char_index,
 
-    (FT_Face_GetKerningFunc)   Get_Kerning,
-    (FT_Face_AttachFunc)   0,
-    (FT_Face_GetAdvancesFunc)  0,
+    (FT_Face_GetKerningFunc)  Get_Kerning,
+    (FT_Face_AttachFunc)      0,
+    (FT_Face_GetAdvancesFunc) 0,
     
-    (FT_CharMap_CharNextFunc)  cff_get_next_char
+    (FT_CharMap_CharNextFunc) cff_get_next_char
   };
 
 
diff --git a/src/cff/cffdrivr.h b/src/cff/cffdrivr.h
index 1272796..553848c 100644
--- a/src/cff/cffdrivr.h
+++ b/src/cff/cffdrivr.h
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    High-level OpenType 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,       */
diff --git a/src/cff/cffgload.c b/src/cff/cffgload.c
index 7ffc99a..7326654 100644
--- a/src/cff/cffgload.c
+++ b/src/cff/cffgload.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    OpenType Glyph Loader (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,       */
@@ -426,6 +426,7 @@
 
       builder->last = *point;
     }
+
     outline->n_points++;
   }
 
@@ -492,6 +493,7 @@
       if ( !error )
         error = add_point1( builder, x, y );
     }
+
     return error;
   }
 
@@ -502,6 +504,7 @@
   {
     FT_Outline*  outline = builder->current;
 
+
     /* XXXX: We must not include the last point in the path if it */
     /*       is located on the first point.                       */
     if ( outline->n_points > 1 )
@@ -518,8 +521,8 @@
         p1    = outline->points + first;
       }
 
-      /* `delete' last point only if it coincides with the first */
-      /* point and it is not a control point (which can happen). */
+      /* `delete' last point only if it coincides with the first    */
+      /* point and if it is not a control point (which can happen). */
       if ( p1->x == p2->x && p1->y == p2->y )
         if ( *control == FT_Curve_Tag_On )
           outline->n_points--;
@@ -533,7 +536,7 @@
 
   static FT_Int
   cff_lookup_glyph_by_stdcharcode( CFF_Font  cff,
-                                   FT_Int     charcode )
+                                   FT_Int    charcode )
   {
     FT_UInt    n;
     FT_UShort  glyph_sid;
@@ -567,7 +570,7 @@
     FT_Int       bchar_index, achar_index, n_base_points;
     FT_Outline*  base = decoder->builder.base;
     TT_Face      face = decoder->builder.face;
-    CFF_Font    cff  = (CFF_Font)(face->extra.data);
+    CFF_Font     cff  = (CFF_Font)(face->extra.data);
     FT_Vector    left_bearing, advance;
     FT_Byte*     charstring;
     FT_ULong     charstring_len;
@@ -587,8 +590,8 @@
     /* accent character and return the array of subglyphs.         */
     if ( decoder->builder.no_recurse )
     {
-      FT_GlyphSlot     glyph  = (FT_GlyphSlot)decoder->builder.glyph;
-      FT_GlyphLoader   loader = glyph->internal->loader;
+      FT_GlyphSlot    glyph  = (FT_GlyphSlot)decoder->builder.glyph;
+      FT_GlyphLoader  loader = glyph->internal->loader;
       FT_SubGlyph     subg;
 
 
@@ -1124,15 +1127,13 @@
           {
             FT_UInt maskbyte;
 
+
             FT_TRACE4(( " " ));
 
             for ( maskbyte = 0;
                   maskbyte < (FT_UInt)(( decoder->num_hints + 7 ) >> 3);
                   maskbyte++, ip++ )
-            {
               FT_TRACE4(( "%02X", *ip ));
-            }
-
           }
 #else
           ip += ( decoder->num_hints + 7 ) >> 3;
@@ -2115,7 +2116,7 @@
     FT_Error     error = 0;
     CFF_Decoder  decoder;
     FT_Int       glyph_index;
-    CFF_Font    cff = (CFF_Font)face->other;
+    CFF_Font     cff = (CFF_Font)face->other;
 
 
     *max_advance = 0;
@@ -2185,7 +2186,7 @@
     CFF_Decoder  decoder;
     TT_Face      face = (TT_Face)glyph->root.face;
     FT_Bool      hinting;
-    CFF_Font    cff = (CFF_Font)face->extra.data;
+    CFF_Font     cff = (CFF_Font)face->extra.data;
 
     FT_Matrix    font_matrix;
     FT_Vector    font_offset;
@@ -2329,8 +2330,8 @@
 
           if ( hinting )
           {
-            metrics->horiAdvance = ( metrics->horiAdvance + 32 ) & -64;
-            metrics->vertAdvance = ( metrics->vertAdvance + 32 ) & -64;
+            metrics->horiAdvance  = ( metrics->horiAdvance + 32 ) & -64;
+            metrics->vertAdvance  = ( metrics->vertAdvance + 32 ) & -64;
 
             metrics->vertBearingX = ( metrics->vertBearingX + 32 ) & -64;
             metrics->vertBearingY = ( metrics->vertBearingY + 32 ) & -64;
diff --git a/src/cff/cffgload.h b/src/cff/cffgload.h
index 7b22330..b749d1d 100644
--- a/src/cff/cffgload.h
+++ b/src/cff/cffgload.h
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    OpenType Glyph Loader (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,       */
@@ -41,79 +41,81 @@ FT_BEGIN_HEADER
   /*     A structure used during glyph loading to store its outline.       */
   /*                                                                       */
   /* <Fields>                                                              */
-  /*    memory       :: The current memory object.                         */
+  /*    memory        :: The current memory object.                        */
   /*                                                                       */
-  /*    face         :: The current face object.                           */
+  /*    face          :: The current face object.                          */
   /*                                                                       */
-  /*    glyph        :: The current glyph slot.                            */
+  /*    glyph         :: The current glyph slot.                           */
   /*                                                                       */
-  /*    current      :: The current glyph outline.                         */
+  /*    loader        :: The current glyph loader.                         */
   /*                                                                       */
-  /*    base         :: The base glyph outline.                            */
+  /*    base          :: The base glyph outline.                           */
   /*                                                                       */
-  /*    max_points   :: maximum points in builder outline                  */
+  /*    current       :: The current glyph outline.                        */
   /*                                                                       */
-  /*    max_contours :: Maximal number of contours in builder outline.     */
+  /*    last          :: The last point position.                          */
   /*                                                                       */
-  /*    last         :: The last point position.                           */
+  /*    scale_x       :: The horizontal scale (FUnits to sub-pixels).      */
   /*                                                                       */
-  /*    scale_x      :: The horizontal scale (FUnits to sub-pixels).       */
+  /*    scale_y       :: The vertical scale (FUnits to sub-pixels).        */
   /*                                                                       */
-  /*    scale_y      :: The vertical scale (FUnits to sub-pixels).         */
+  /*    pos_x         :: The horizontal translation (if composite glyph).  */
   /*                                                                       */
-  /*    pos_x        :: The horizontal translation (if composite glyph).   */
+  /*    pos_y         :: The vertical translation (if composite glyph).    */
   /*                                                                       */
-  /*    pos_y        :: The vertical translation (if composite glyph).     */
+  /*    left_bearing  :: The left side bearing point.                      */
   /*                                                                       */
-  /*    left_bearing :: The left side bearing point.                       */
+  /*    advance       :: The horizontal advance vector.                    */
   /*                                                                       */
-  /*    advance      :: The horizontal advance vector.                     */
+  /*    bbox          :: Unused.                                           */
   /*                                                                       */
-  /*    bbox         :: Unused.                                            */
+  /*    path_begun    :: A flag which indicates that a new path has begun. */
   /*                                                                       */
-  /*    path_begun   :: A flag which indicates that a new path has begun.  */
+  /*    load_points   :: If this flag is not set, no points are loaded.    */
   /*                                                                       */
-  /*    load_points  :: If this flag is not set, no points are loaded.     */
+  /*    no_recurse    :: Set but not used.                                 */
   /*                                                                       */
-  /*    no_recurse   :: Set but not used.                                  */
+  /*    error         :: An error code that is only used to report memory  */
+  /*                     allocation problems.                              */
   /*                                                                       */
-  /*    error        :: An error code that is only used to report memory   */
-  /*                    allocation problems.                               */
+  /*    metrics_only  :: A boolean indicating that we only want to compute */
+  /*                     the metrics of a given glyph, not load all of its */
+  /*                     points.                                           */
   /*                                                                       */
-  /*    metrics_only :: A boolean indicating that we only want to compute  */
-  /*                    the metrics of a given glyph, not load all of its  */
-  /*                    points.                                            */
+  /*    hints_funcs   :: Auxiliary pointer for hinting.                    */
+  /*                                                                       */
+  /*    hints_globals :: Auxiliary pointer for hinting.                    */
   /*                                                                       */
   typedef struct  CFF_Builder_
   {
-    FT_Memory         memory;
-    TT_Face           face;
-    CFF_GlyphSlot     glyph;
-    FT_GlyphLoader    loader;
-    FT_Outline*       base;
-    FT_Outline*       current;
+    FT_Memory       memory;
+    TT_Face         face;
+    CFF_GlyphSlot   glyph;
+    FT_GlyphLoader  loader;
+    FT_Outline*     base;
+    FT_Outline*     current;
 
-    FT_Vector         last;
+    FT_Vector       last;
 
-    FT_Fixed          scale_x;
-    FT_Fixed          scale_y;
+    FT_Fixed        scale_x;
+    FT_Fixed        scale_y;
 
-    FT_Pos            pos_x;
-    FT_Pos            pos_y;
+    FT_Pos          pos_x;
+    FT_Pos          pos_y;
 
-    FT_Vector         left_bearing;
-    FT_Vector         advance;
+    FT_Vector       left_bearing;
+    FT_Vector       advance;
 
-    FT_BBox           bbox;          /* bounding box */
-    FT_Bool           path_begun;
-    FT_Bool           load_points;
-    FT_Bool           no_recurse;
+    FT_BBox         bbox;          /* bounding box */
+    FT_Bool         path_begun;
+    FT_Bool         load_points;
+    FT_Bool         no_recurse;
 
-    FT_Error          error;         /* only used for memory errors */
-    FT_Bool           metrics_only;
+    FT_Error        error;         /* only used for memory errors */
+    FT_Bool         metrics_only;
 
-    void*             hints_funcs;    /* hinter-specific */
-    void*             hints_globals;  /* hinter-specific */
+    void*           hints_funcs;    /* hinter-specific */
+    void*           hints_globals;  /* hinter-specific */
 
   } CFF_Builder;
 
@@ -132,7 +134,7 @@ FT_BEGIN_HEADER
   typedef struct  CFF_Decoder_
   {
     CFF_Builder        builder;
-    CFF_Font          cff;
+    CFF_Font           cff;
 
     FT_Fixed           stack[CFF_MAX_OPERANDS + 1];
     FT_Fixed*          top;
diff --git a/src/cff/cffload.c b/src/cff/cffload.c
index d4b3342..1e00789 100644
--- a/src/cff/cffload.c
+++ b/src/cff/cffload.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    OpenType and CFF data/program tables loader (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,       */
@@ -1358,7 +1358,7 @@
 
   static void
   CFF_Done_FD_Select( CFF_FDSelect  select,
-                      FT_Stream       stream )
+                      FT_Stream     stream )
   {
     if ( select->data )
       FT_FRAME_RELEASE( select->data );
@@ -1371,9 +1371,9 @@
 
   static FT_Error
   CFF_Load_FD_Select( CFF_FDSelect  select,
-                      FT_UInt         num_glyphs,
-                      FT_Stream       stream,
-                      FT_ULong        offset )
+                      FT_UInt       num_glyphs,
+                      FT_Stream     stream,
+                      FT_ULong      offset )
   {
     FT_Error  error;
     FT_Byte   format;
@@ -1415,7 +1415,7 @@
 
   FT_LOCAL_DEF( FT_Byte )
   CFF_Get_FD( CFF_FDSelect  select,
-              FT_UInt         glyph_index )
+              FT_UInt       glyph_index )
   {
     FT_Byte  fd = 0;
 
@@ -1485,7 +1485,7 @@
 
   static void
   CFF_Done_Encoding( CFF_Encoding  encoding,
-                     FT_Stream      stream )
+                     FT_Stream     stream )
   {
     FT_Memory  memory = stream->memory;
 
@@ -1501,7 +1501,7 @@
 
   static void
   CFF_Done_Charset( CFF_Charset  charset,
-                    FT_Stream     stream )
+                    FT_Stream    stream )
   {
     FT_Memory  memory = stream->memory;
 
@@ -1529,7 +1529,7 @@
 
     /* Get the format of the table. */
     if ( FT_STREAM_SEEK( charset->offset ) ||
-         FT_READ_BYTE( charset->format ) )
+         FT_READ_BYTE( charset->format )   )
       goto Exit;
 
     /* If the the offset is greater than 2, we have to parse the */
@@ -1627,7 +1627,7 @@
 
         /* Copy the predefined charset into the allocated memory. */
         FT_MEM_COPY( charset->sids, cff_isoadobe_charset,
-                  num_glyphs * sizeof ( FT_UShort ) );
+                     num_glyphs * sizeof ( FT_UShort ) );
 
         break;
 
@@ -1646,7 +1646,7 @@
 
         /* Copy the predefined charset into the allocated memory.     */
         FT_MEM_COPY( charset->sids, cff_expert_charset,
-                  num_glyphs * sizeof ( FT_UShort ) );
+                     num_glyphs * sizeof ( FT_UShort ) );
 
         break;
 
@@ -1665,7 +1665,7 @@
 
         /* Copy the predefined charset into the allocated memory.     */
         FT_MEM_COPY( charset->sids, cff_expertsubset_charset,
-                  num_glyphs * sizeof ( FT_UShort ) );
+                     num_glyphs * sizeof ( FT_UShort ) );
 
         break;
 
@@ -1695,10 +1695,10 @@
   static FT_Error
   CFF_Load_Encoding( CFF_Encoding  encoding,
                      CFF_Charset   charset,
-                     FT_UInt        num_glyphs,
-                     FT_Stream      stream,
-                     FT_ULong       base_offset,
-                     FT_ULong       offset )
+                     FT_UInt       num_glyphs,
+                     FT_Stream     stream,
+                     FT_ULong      base_offset,
+                     FT_ULong      offset )
   {
     FT_Memory   memory = stream->memory;
     FT_Error    error  = 0;
@@ -1747,8 +1747,8 @@
 
       /* we need to parse the table to determine its size */
       if ( FT_STREAM_SEEK( encoding->offset ) ||
-           FT_READ_BYTE( encoding->format ) ||
-           FT_READ_BYTE( count )            )
+           FT_READ_BYTE( encoding->format )   ||
+           FT_READ_BYTE( count )              )
         goto Exit;
 
       switch ( encoding->format & 0x7F )
@@ -1867,7 +1867,7 @@
       case 0:
         /* First, copy the code to SID mapping. */
         FT_MEM_COPY( encoding->sids, cff_standard_encoding,
-                  256 * sizeof ( FT_UShort ) );
+                     256 * sizeof ( FT_UShort ) );
 
         /* Construct code to GID mapping from code */
         /* to SID mapping and charset.             */
@@ -1898,7 +1898,7 @@
       case 1:
         /* First, copy the code to SID mapping. */
         FT_MEM_COPY( encoding->sids, cff_expert_encoding,
-                  256 * sizeof ( FT_UShort ) );
+                     256 * sizeof ( FT_UShort ) );
 
         /* Construct code to GID mapping from code to SID mapping */
         /* and charset.                                           */
@@ -1958,17 +1958,17 @@
 
   static FT_Error
   CFF_Load_SubFont( CFF_SubFont  font,
-                    CFF_Index     idx,
-                    FT_UInt       font_index,
-                    FT_Stream     stream,
-                    FT_ULong      base_offset )
+                    CFF_Index    idx,
+                    FT_UInt      font_index,
+                    FT_Stream    stream,
+                    FT_ULong     base_offset )
   {
-    FT_Error        error;
-    CFF_ParserRec      parser;
-    FT_Byte*        dict;
-    FT_ULong        dict_len;
+    FT_Error         error;
+    CFF_ParserRec    parser;
+    FT_Byte*         dict;
+    FT_ULong         dict_len;
     CFF_FontRecDict  top  = &font->font_dict;
-    CFF_Private    priv = &font->private_dict;
+    CFF_Private      priv = &font->private_dict;
 
 
     CFF_Parser_Init( &parser, CFF_CODE_TOPDICT, &font->font_dict );
@@ -2010,7 +2010,7 @@
       CFF_Parser_Init( &parser, CFF_CODE_PRIVATE, priv );
 
       if ( FT_STREAM_SEEK( base_offset + font->font_dict.private_offset ) ||
-           FT_FRAME_ENTER( font->font_dict.private_size )              )
+           FT_FRAME_ENTER( font->font_dict.private_size )                 )
         goto Exit;
 
       error = CFF_Parser_Run( &parser,
@@ -2025,7 +2025,7 @@
     if ( priv->local_subrs_offset )
     {
       if ( FT_STREAM_SEEK( base_offset + top->private_offset +
-                      priv->local_subrs_offset ) )
+                           priv->local_subrs_offset ) )
         goto Exit;
 
       error = cff_new_index( &font->local_subrs_index, stream, 1 );
@@ -2045,7 +2045,7 @@
 
 
   static void
-  CFF_Done_SubFont( FT_Memory     memory,
+  CFF_Done_SubFont( FT_Memory    memory,
                     CFF_SubFont  subfont )
   {
     if ( subfont )
@@ -2059,7 +2059,7 @@
   FT_LOCAL_DEF( FT_Error )
   CFF_Load_Font( FT_Stream  stream,
                  FT_Int     face_index,
-                 CFF_Font  font )
+                 CFF_Font   font )
   {
     static const FT_Frame_Field  cff_header_fields[] =
     {
@@ -2074,9 +2074,9 @@
       FT_FRAME_END
     };
 
-    FT_Error        error;
-    FT_Memory       memory = stream->memory;
-    FT_ULong        base_offset;
+    FT_Error         error;
+    FT_Memory        memory = stream->memory;
+    FT_ULong         base_offset;
     CFF_FontRecDict  dict;
 
 
@@ -2138,7 +2138,7 @@
     if ( dict->cid_registry )
     {
       CFF_IndexRec  fd_index;
-      CFF_SubFont  sub;
+      CFF_SubFont   sub;
       FT_UInt       idx;
 
 
diff --git a/src/cff/cffload.h b/src/cff/cffload.h
index 1a37c16..9511838 100644
--- a/src/cff/cffload.h
+++ b/src/cff/cffload.h
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    OpenType & CFF data/program tables loader (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,       */
@@ -33,29 +33,29 @@ FT_BEGIN_HEADER
 
   FT_LOCAL( FT_String* )
   CFF_Get_Name( CFF_Index  index,
-                FT_UInt     element );
+                FT_UInt    element );
 
   FT_LOCAL( FT_String* )
-  CFF_Get_String( CFF_Index          index,
-                  FT_UInt             sid,
+  CFF_Get_String( CFF_Index        index,
+                  FT_UInt          sid,
                   PSNames_Service  interface );
 
 
   FT_LOCAL( FT_Error )
   CFF_Access_Element( CFF_Index  index,
-                      FT_UInt     element,
-                      FT_Byte**   pbytes,
-                      FT_ULong*   pbyte_len );
+                      FT_UInt    element,
+                      FT_Byte**  pbytes,
+                      FT_ULong*  pbyte_len );
 
   FT_LOCAL( void )
   CFF_Forget_Element( CFF_Index  index,
-                      FT_Byte**   pbytes );
+                      FT_Byte**  pbytes );
 
 
   FT_LOCAL( FT_Error )
   CFF_Load_Font( FT_Stream  stream,
                  FT_Int     face_index,
-                 CFF_Font  font );
+                 CFF_Font   font );
 
   FT_LOCAL( void )
   CFF_Done_Font( CFF_Font  font );
@@ -63,7 +63,7 @@ FT_BEGIN_HEADER
 
   FT_LOCAL( FT_Byte )
   CFF_Get_FD( CFF_FDSelect  select,
-              FT_UInt         glyph_index );
+              FT_UInt       glyph_index );
 
 
 FT_END_HEADER
diff --git a/src/cff/cffobjs.c b/src/cff/cffobjs.c
index 067c43d..b724bad 100644
--- a/src/cff/cffobjs.c
+++ b/src/cff/cffobjs.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    OpenType objects manager (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,       */
@@ -44,8 +44,6 @@
 #define FT_COMPONENT  trace_cffobjs
 
 
-
-
   /*************************************************************************/
   /*                                                                       */
   /*                            SIZE FUNCTIONS                             */
@@ -60,7 +58,7 @@
   CFF_Size_Get_Globals_Funcs( CFF_Size  size )
   {
     CFF_Face          face     = (CFF_Face)size->face;
-    CFF_Font         font     = (CFF_FontRec *)face->extra.data;
+    CFF_Font          font     = (CFF_FontRec *)face->extra.data;
     PSHinter_Service  pshinter = (PSHinter_Service)font->pshinter;
     FT_Module         module;
 
@@ -101,10 +99,10 @@
     {
       PSH_Globals    globals;
       CFF_Face       face    = (CFF_Face)size->face;
-      CFF_Font      font    = (CFF_FontRec *)face->extra.data;
-      CFF_SubFont   subfont = &font->top_font;
+      CFF_Font       font    = (CFF_FontRec *)face->extra.data;
+      CFF_SubFont    subfont = &font->top_font;
 
-      CFF_Private   cpriv   = &subfont->private_dict;
+      CFF_Private    cpriv   = &subfont->private_dict;
       PS_PrivateRec  priv;
 
 
@@ -196,7 +194,7 @@
   CFF_GlyphSlot_Init( CFF_GlyphSlot  slot )
   {
     CFF_Face          face     = (CFF_Face)slot->root.face;
-    CFF_Font         font     = (CFF_FontRec *)face->extra.data;
+    CFF_Font          font     = (CFF_FontRec *)face->extra.data;
     PSHinter_Service  pshinter = (PSHinter_Service)font->pshinter;
 
 
@@ -256,12 +254,12 @@
                  FT_Int         num_params,
                  FT_Parameter*  params )
   {
-    FT_Error             error;
+    FT_Error          error;
     SFNT_Service      sfnt;
     PSNames_Service   psnames;
     PSHinter_Service  pshinter;
-    FT_Bool              pure_cff    = 1;
-    FT_Bool              sfnt_format = 0;
+    FT_Bool           pure_cff    = 1;
+    FT_Bool           sfnt_format = 0;
 
 
     sfnt = (SFNT_Service)FT_Get_Module_Interface(
@@ -335,7 +333,7 @@
 
     /* now load and parse the CFF table in the file */
     {
-      CFF_Font  cff;
+      CFF_Font   cff;
       FT_Memory  memory = face->root.memory;
       FT_Face    root;
       FT_UInt    flags;
@@ -367,7 +365,7 @@
         {
           FT_ERROR(( "CFF_Face_Init:" ));
           FT_ERROR(( " cannot open CFF & CEF fonts\n" ));
-          FT_ERROR(( "             " ));
+          FT_ERROR(( "              " ));
           FT_ERROR(( " without the `PSNames' module\n" ));
           goto Bad_Format;
         }
@@ -449,7 +447,7 @@
 
         root->style_flags = flags;
         
-        /* XXX: no charmaps for pure CFF fonts for now !! */
+        /* XXX: no charmaps for pure CFF fonts currently! */
       }
     }
 
@@ -465,7 +463,7 @@
   FT_LOCAL_DEF( void )
   CFF_Face_Done( CFF_Face  face )
   {
-    FT_Memory        memory = face->root.memory;
+    FT_Memory     memory = face->root.memory;
     SFNT_Service  sfnt   = (SFNT_Service)face->sfnt;
 
 
@@ -488,36 +486,16 @@
   FT_LOCAL_DEF( FT_Error )
   CFF_Driver_Init( CFF_Driver  driver )
   {
-    /* init extension registry if needed */
-
-#ifdef TT_CONFIG_OPTION_EXTEND_ENGINE
-
-    return TT_Init_Extensions( driver );
-
-#else
-
     FT_UNUSED( driver );
 
     return CFF_Err_Ok;
-
-#endif
   }
 
 
   FT_LOCAL_DEF( void )
   CFF_Driver_Done( CFF_Driver  driver )
   {
-    /* destroy extensions registry if needed */
-
-#ifdef TT_CONFIG_OPTION_EXTEND_ENGINE
-
-    TT_Done_Extensions( driver );
-
-#else
-
     FT_UNUSED( driver );
-
-#endif
   }
 
 
diff --git a/src/cff/cffobjs.h b/src/cff/cffobjs.h
index 4918b6b..6610952 100644
--- a/src/cff/cffobjs.h
+++ b/src/cff/cffobjs.h
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    OpenType objects manager (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,       */
@@ -124,6 +124,7 @@ FT_BEGIN_HEADER
   FT_LOCAL( FT_Error )
   CFF_GlyphSlot_Init( CFF_GlyphSlot   slot );
 
+
   /*************************************************************************/
   /*                                                                       */
   /* Face functions                                                        */
diff --git a/src/cff/cffparse.c b/src/cff/cffparse.c
index 4c18883..8f35020 100644
--- a/src/cff/cffparse.c
+++ b/src/cff/cffparse.c
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    CFF token stream parser (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,       */
@@ -48,7 +48,7 @@
 
 
   /* now generate handlers for the most simple fields */
-  typedef FT_Error  (*CFF_Field_Reader)( CFF_Parser   parser );
+  typedef FT_Error  (*CFF_Field_Reader)( CFF_Parser  parser );
 
   typedef struct  CFF_Field_Handler_
   {
@@ -64,9 +64,9 @@
 
 
   FT_LOCAL_DEF( void )
-  CFF_Parser_Init( CFF_Parser   parser,
-                   FT_UInt      code,
-                   void*        object )
+  CFF_Parser_Init( CFF_Parser  parser,
+                   FT_UInt     code,
+                   void*       object )
   {
     FT_MEM_SET( parser, 0, sizeof ( *parser ) );
 
@@ -311,15 +311,15 @@
   }
 
   static FT_Error
-  cff_parse_font_matrix( CFF_Parser   parser )
+  cff_parse_font_matrix( CFF_Parser  parser )
   {
     CFF_FontRecDict  dict   = (CFF_FontRecDict)parser->object;
-    FT_Matrix*      matrix = &dict->font_matrix;
-    FT_Vector*      offset = &dict->font_offset;
-    FT_UShort*      upm    = &dict->units_per_em;
-    FT_Byte**       data   = parser->stack;
-    FT_Error        error;
-    FT_Fixed        temp;
+    FT_Matrix*       matrix = &dict->font_matrix;
+    FT_Vector*       offset = &dict->font_offset;
+    FT_UShort*       upm    = &dict->units_per_em;
+    FT_Byte**        data   = parser->stack;
+    FT_Error         error;
+    FT_Fixed         temp;
 
 
     error = CFF_Err_Stack_Underflow;
@@ -359,12 +359,12 @@
 
 
   static FT_Error
-  cff_parse_font_bbox( CFF_Parser   parser )
+  cff_parse_font_bbox( CFF_Parser  parser )
   {
     CFF_FontRecDict  dict = (CFF_FontRecDict)parser->object;
-    FT_BBox*        bbox = &dict->font_bbox;
-    FT_Byte**       data = parser->stack;
-    FT_Error        error;
+    FT_BBox*         bbox = &dict->font_bbox;
+    FT_Byte**        data = parser->stack;
+    FT_Error         error;
 
 
     error = CFF_Err_Stack_Underflow;
@@ -383,11 +383,11 @@
 
 
   static FT_Error
-  cff_parse_private_dict( CFF_Parser   parser )
+  cff_parse_private_dict( CFF_Parser  parser )
   {
     CFF_FontRecDict  dict = (CFF_FontRecDict)parser->object;
-    FT_Byte**       data = parser->stack;
-    FT_Error        error;
+    FT_Byte**        data = parser->stack;
+    FT_Error         error;
 
 
     error = CFF_Err_Stack_Underflow;
@@ -404,11 +404,11 @@
 
 
   static FT_Error
-  cff_parse_cid_ros( CFF_Parser   parser )
+  cff_parse_cid_ros( CFF_Parser  parser )
   {
     CFF_FontRecDict  dict = (CFF_FontRecDict)parser->object;
-    FT_Byte**       data = parser->stack;
-    FT_Error        error;
+    FT_Byte**        data = parser->stack;
+    FT_Error         error;
 
 
     error = CFF_Err_Stack_Underflow;
@@ -480,9 +480,9 @@
 
 
   FT_LOCAL_DEF( FT_Error )
-  CFF_Parser_Run( CFF_Parser   parser,
-                  FT_Byte*     start,
-                  FT_Byte*     limit )
+  CFF_Parser_Run( CFF_Parser  parser,
+                  FT_Byte*    start,
+                  FT_Byte*    limit )
   {
     FT_Byte*  p     = start;
     FT_Error  error = CFF_Err_Ok;
diff --git a/src/cff/cffparse.h b/src/cff/cffparse.h
index 045fa25..f2a935c 100644
--- a/src/cff/cffparse.h
+++ b/src/cff/cffparse.h
@@ -4,7 +4,7 @@
 /*                                                                         */
 /*    CFF token stream parser (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,       */
@@ -50,14 +50,14 @@ FT_BEGIN_HEADER
 
 
   FT_LOCAL( void )
-  CFF_Parser_Init( CFF_Parser   parser,
-                   FT_UInt      code,
-                   void*        object );
+  CFF_Parser_Init( CFF_Parser  parser,
+                   FT_UInt     code,
+                   void*       object );
 
   FT_LOCAL( FT_Error )
-  CFF_Parser_Run( CFF_Parser   parser,
-                  FT_Byte*     start,
-                  FT_Byte*     limit );
+  CFF_Parser_Run( CFF_Parser  parser,
+                  FT_Byte*    start,
+                  FT_Byte*    limit );
 
 
 FT_END_HEADER
diff --git a/src/cff/cfftoken.h b/src/cff/cfftoken.h
index 431ae12..2cbb837 100644
--- a/src/cff/cfftoken.h
+++ b/src/cff/cfftoken.h
@@ -2,9 +2,9 @@
 /*                                                                         */
 /*  cfftoken.h                                                             */
 /*                                                                         */
-/*    CFF token definitions                                                */
+/*    CFF token definitions (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,       */
@@ -20,7 +20,7 @@
 #define FT_STRUCTURE  CFF_FontRecDictRec
 
 #undef  CFFCODE
-#define CFFCODE        CFFCODE_TOPDICT
+#define CFFCODE       CFFCODE_TOPDICT
 
   CFF_FIELD_STRING  ( 0,     version )
   CFF_FIELD_STRING  ( 1,     notice )
diff --git a/src/cff/descrip.mms b/src/cff/descrip.mms
index e3816fe..2401f2e 100644
--- a/src/cff/descrip.mms
+++ b/src/cff/descrip.mms
@@ -3,7 +3,7 @@
 #
 
 
-# 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, modified,
diff --git a/src/cff/rules.mk b/src/cff/rules.mk
index 73fea4d..6f0b9e4 100644
--- a/src/cff/rules.mk
+++ b/src/cff/rules.mk
@@ -3,7 +3,7 @@
 #
 
 
-# Copyright 1996-2000 by
+# Copyright 1996-2000, 2001 by
 # David Turner, Robert Wilhelm, and Werner Lemberg.
 #
 # This file is part of the FreeType project, and may only be used, modified,
diff --git a/src/sfnt/sfobjs.c b/src/sfnt/sfobjs.c
index 21d4d71..a1c208f 100644
--- a/src/sfnt/sfobjs.c
+++ b/src/sfnt/sfobjs.c
@@ -478,11 +478,6 @@
          LOAD_( pclt )    )
       goto Exit;
 
-#ifdef TT_CONFIG_OPTION_EXTEND_ENGINE
-    if ( ( error = TT_Extension_Create( face ) ) != SFNT_Err_Ok )
-      goto Exit;
-#endif
-
     face->root.family_name = tt_face_get_name( face, TT_NAME_ID_FONT_FAMILY );
     face->root.style_name  = tt_face_get_name( face, TT_NAME_ID_FONT_SUBFAMILY );
 
diff --git a/src/truetype/ttdriver.c b/src/truetype/ttdriver.c
index d54c57a..0902be3 100644
--- a/src/truetype/ttdriver.c
+++ b/src/truetype/ttdriver.c
@@ -222,7 +222,7 @@
     size->strike_index    = 0xFFFF;
 #endif
 
-    return TT_Reset_Size( size );
+    return TT_Size_Reset( size );
   }
 
 
@@ -261,7 +261,7 @@
     size->strike_index    = 0xFFFF;
 #endif
 
-    return TT_Reset_Size( size );
+    return TT_Size_Reset( size );
   }
 
 
@@ -319,7 +319,7 @@
 
       if ( !size->ttmetrics.valid )
       {
-        if ( FT_SET_ERROR( TT_Reset_Size( size ) ) )
+        if ( FT_SET_ERROR( TT_Size_Reset( size ) ) )
           return error;
       }
     }
@@ -496,8 +496,8 @@
 
       (void*)0,        /* driver specific interface */
 
-      (FT_Module_Constructor)TT_Init_Driver,
-      (FT_Module_Destructor) TT_Done_Driver,
+      (FT_Module_Constructor)TT_Driver_Init,
+      (FT_Module_Destructor) TT_Driver_Done,
       (FT_Module_Requester)  tt_get_interface,
     },
 
@@ -506,10 +506,10 @@
     sizeof ( FT_GlyphSlotRec ),
 
 
-    (FT_Face_InitFunc)     TT_Init_Face,
-    (FT_Face_DoneFunc)     TT_Done_Face,
-    (FT_Size_InitFunc)     TT_Init_Size,
-    (FT_Size_DoneFunc)     TT_Done_Size,
+    (FT_Face_InitFunc)     TT_Face_Init,
+    (FT_Face_DoneFunc)     TT_Face_Done,
+    (FT_Size_InitFunc)     TT_Size_Init,
+    (FT_Size_DoneFunc)     TT_Size_Done,
     (FT_Slot_InitFunc)0,
     (FT_Slot_DoneFunc)0,
 
diff --git a/src/truetype/ttobjs.c b/src/truetype/ttobjs.c
index 6da86e1..4fbac72 100644
--- a/src/truetype/ttobjs.c
+++ b/src/truetype/ttobjs.c
@@ -133,7 +133,7 @@
   /*************************************************************************/
   /*                                                                       */
   /* <Function>                                                            */
-  /*    TT_Init_Face                                                       */
+  /*    TT_Face_Init                                                       */
   /*                                                                       */
   /* <Description>                                                         */
   /*    Initializes a given TrueType face object.                          */
@@ -154,7 +154,7 @@
   /*    FreeType error code.  0 means success.                             */
   /*                                                                       */
   FT_LOCAL_DEF( FT_Error )
-  TT_Init_Face( FT_Stream      stream,
+  TT_Face_Init( FT_Stream      stream,
                 TT_Face        face,
                 FT_Int         face_index,
                 FT_Int         num_params,
@@ -216,7 +216,7 @@
   /*************************************************************************/
   /*                                                                       */
   /* <Function>                                                            */
-  /*    TT_Done_Face                                                       */
+  /*    TT_Face_Done                                                       */
   /*                                                                       */
   /* <Description>                                                         */
   /*    Finalizes a given face object.                                     */
@@ -225,7 +225,7 @@
   /*    face :: A pointer to the face object to destroy.                   */
   /*                                                                       */
   FT_LOCAL_DEF( void )
-  TT_Done_Face( TT_Face  face )
+  TT_Face_Done( TT_Face  face )
   {
     FT_Memory  memory = face->root.memory;
     FT_Stream  stream = face->root.stream;
@@ -266,7 +266,7 @@
   /*************************************************************************/
   /*                                                                       */
   /* <Function>                                                            */
-  /*    TT_Init_Size                                                       */
+  /*    TT_Size_Init                                                       */
   /*                                                                       */
   /* <Description>                                                         */
   /*    Initializes a new TrueType size object.                            */
@@ -278,7 +278,7 @@
   /*    FreeType error code.  0 means success.                             */
   /*                                                                       */
   FT_LOCAL_DEF( FT_Error )
-  TT_Init_Size( TT_Size  size )
+  TT_Size_Init( TT_Size  size )
   {
     FT_Error  error = TT_Err_Ok;
 
@@ -447,7 +447,7 @@
   /*************************************************************************/
   /*                                                                       */
   /* <Function>                                                            */
-  /*    TT_Done_Size                                                       */
+  /*    TT_Size_Done                                                       */
   /*                                                                       */
   /* <Description>                                                         */
   /*    The TrueType size object finalizer.                                */
@@ -456,7 +456,7 @@
   /*    size :: A handle to the target size object.                        */
   /*                                                                       */
   FT_LOCAL_DEF( void )
-  TT_Done_Size( TT_Size  size )
+  TT_Size_Done( TT_Size  size )
   {
 
 #ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
@@ -738,7 +738,7 @@
   /*************************************************************************/
   /*                                                                       */
   /* <Function>                                                            */
-  /*    TT_Reset_Size                                                      */
+  /*    TT_Size_Reset                                                      */
   /*                                                                       */
   /* <Description>                                                         */
   /*    Resets a TrueType size when resolutions and character dimensions   */
@@ -748,7 +748,7 @@
   /*    size :: A handle to the target size object.                        */
   /*                                                                       */
   FT_LOCAL_DEF( FT_Error )
-  TT_Reset_Size( TT_Size  size )
+  TT_Size_Reset( TT_Size  size )
   {
     FT_Face   face;
     FT_Error  error = TT_Err_Ok;
@@ -788,7 +788,7 @@
   /*************************************************************************/
   /*                                                                       */
   /* <Function>                                                            */
-  /*    TT_Init_Driver                                                     */
+  /*    TT_Driver_Init                                                     */
   /*                                                                       */
   /* <Description>                                                         */
   /*    Initializes a given TrueType driver object.                        */
@@ -800,7 +800,7 @@
   /*    FreeType error code.  0 means success.                             */
   /*                                                                       */
   FT_LOCAL_DEF( FT_Error )
-  TT_Init_Driver( TT_Driver  driver )
+  TT_Driver_Init( TT_Driver  driver )
   {
     FT_Error  error;
 
@@ -808,13 +808,6 @@
     /* set `extra' in glyph loader */
     error = FT_GlyphLoader_CreateExtra( FT_DRIVER( driver )->glyph_loader );
 
-    /* init extension registry if needed */
-
-#ifdef TT_CONFIG_OPTION_EXTEND_ENGINE
-    if ( !error )
-      return TT_Init_Extensions( driver );
-#endif
-
     return error;
   }
 
@@ -822,7 +815,7 @@
   /*************************************************************************/
   /*                                                                       */
   /* <Function>                                                            */
-  /*    TT_Done_Driver                                                     */
+  /*    TT_Driver_Done                                                     */
   /*                                                                       */
   /* <Description>                                                         */
   /*    Finalizes a given TrueType driver.                                 */
@@ -831,16 +824,8 @@
   /*    driver :: A handle to the target TrueType driver.                  */
   /*                                                                       */
   FT_LOCAL_DEF( void )
-  TT_Done_Driver( TT_Driver  driver )
+  TT_Driver_Done( TT_Driver  driver )
   {
-    /* destroy extensions registry if needed */
-
-#ifdef TT_CONFIG_OPTION_EXTEND_ENGINE
-
-    TT_Done_Extensions( driver );
-
-#endif
-
 #ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
 
     /* destroy the execution context */
diff --git a/src/truetype/ttobjs.h b/src/truetype/ttobjs.h
index eb09a40..7871788 100644
--- a/src/truetype/ttobjs.h
+++ b/src/truetype/ttobjs.h
@@ -379,14 +379,14 @@ FT_BEGIN_HEADER
   /* Face functions                                                        */
   /*                                                                       */
   FT_LOCAL( FT_Error )
-  TT_Init_Face( FT_Stream      stream,
+  TT_Face_Init( FT_Stream      stream,
                 TT_Face        face,
                 FT_Int         face_index,
                 FT_Int         num_params,
                 FT_Parameter*  params );
 
   FT_LOCAL( void )
-  TT_Done_Face( TT_Face  face );
+  TT_Face_Done( TT_Face  face );
 
 
   /*************************************************************************/
@@ -394,13 +394,13 @@ FT_BEGIN_HEADER
   /* Size functions                                                        */
   /*                                                                       */
   FT_LOCAL( FT_Error )
-  TT_Init_Size( TT_Size  size );
+  TT_Size_Init( TT_Size  size );
 
   FT_LOCAL( void )
-  TT_Done_Size( TT_Size  size );
+  TT_Size_Done( TT_Size  size );
 
   FT_LOCAL( FT_Error )
-  TT_Reset_Size( TT_Size  size );
+  TT_Size_Reset( TT_Size  size );
 
 
   /*************************************************************************/
@@ -408,10 +408,10 @@ FT_BEGIN_HEADER
   /* Driver functions                                                      */
   /*                                                                       */
   FT_LOCAL( FT_Error )
-  TT_Init_Driver( TT_Driver  driver );
+  TT_Driver_Init( TT_Driver  driver );
 
   FT_LOCAL( void )
-  TT_Done_Driver( TT_Driver  driver );
+  TT_Driver_Done( TT_Driver  driver );
 
 
 FT_END_HEADER