* src/sfnt/ttload.c (TT_Load_Generic_Header): Typos.
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
diff --git a/ChangeLog b/ChangeLog
index 5b3e9c4..6a4801e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,32 +1,34 @@
-2001-12-11 David Turner <david@freetype.org>
+2001-12-11 Werner Lemberg <wl@gnu.org>
+
+ * src/sfnt/ttload.c (TT_Load_Generic_Header): Typos.
- * builds/unix/freetype-config.in: modified the script to prevent
- passing "-L/usr/lib" to gcc
+2001-12-11 David Turner <david@freetype.org>
- * docs/FTL.TXT: simple fix (change "LICENSE.TXT" to "FTL.TXT")
+ * builds/unix/freetype-config.in: Modified the script to prevent
+ passing "-L/usr/lib" to gcc.
- * builds/unix/freetype2.m4: added autoconf macro, we need to install
- it in $(prefix)/share/aclocal/freetype2.m4 but I didn't modified
- builds/unix/install.mk yet..
+ * docs/FTL.TXT: Simple fix (change "LICENSE.TXT" to "FTL.TXT").
- * INSTALL: updated the instructions to build shared libraries with
- Jam.. they were simply erroneous..
+ * builds/unix/freetype2.m4: Added autoconf macro; we need to install
+ it in $(prefix)/share/aclocal/freetype2.m4 but I didn't modify
+ builds/unix/install.mk yet.
- * src/base/fttrigon.c (FT_Cos): fixed a small bug that caused slightly
- improper results for FT_Cos and FT_Sin (example: FT_Sin(0) == -1 !!)
+ * INSTALL: Updated the instructions to build shared libraries with
+ Jam. They were simply wrong.
+ * src/base/fttrigon.c (FT_Cos): Fixed a small bug that caused slightly
+ improper results for FT_Cos and FT_Sin (example: FT_Sin(0) == -1!).
-2001-12-11 Detlef Würkner >TetiSoft@apg.lahn.de>
+2001-12-11 Detlef Würkner <TetiSoft@apg.lahn.de>
- * include/freetype/internal/ftstream.h: fixed the definitions of
- GET_LongLE and GET_ULongLE which where incorrect (creating problems
- in the pcf driver)..
+ * include/freetype/internal/ftstream.h: Fixed the definitions of
+ GET_LongLE and GET_ULongLE which where incorrect (creating problems
+ in the pcf driver).
2001-12-10 Francesco Zappa Nardelli <Francesco.Zappa.Nardelli@ens.fr>
- * src/pcf/pcfdriver.c (PCF_Init_Face): allow Xft to use PCF fonts
- by setting the "face->metrics.max_advance" correctly..
-
+ * src/pcf/pcfdriver.c (PCF_Init_Face): Allow Xft to use PCF fonts
+ by setting the "face->metrics.max_advance" correctly.
2001-12-07 David Turner <david@freetype.org>
diff --git a/src/sfnt/ttload.c b/src/sfnt/ttload.c
index 0c9a178..ccb0174 100644
--- a/src/sfnt/ttload.c
+++ b/src/sfnt/ttload.c
@@ -501,7 +501,7 @@
error = face->goto_table( face, tag, stream, 0 );
if ( error )
{
- FT_TRACE2(( "TT_Load_Generic_Table: Font table is missing!\n" ));
+ FT_TRACE2(( "TT_Load_Generic_Header: Font table is missing!\n" ));
goto Exit;
}
@@ -512,7 +512,7 @@
FT_TRACE2(( " Units per EM: %8u\n", header->Units_Per_EM ));
FT_TRACE2(( " IndexToLoc: %8d\n", header->Index_To_Loc_Format ));
- FT_TRACE2(( "TT_Load_Generic_Table: Font table loaded.\n" ));
+ FT_TRACE2(( "TT_Load_Generic_Header: Font table loaded.\n" ));
Exit:
return error;