shithub: freetype+ttf2subf

Download patch

ref: 04bfe312a54b73b875f2ce3ce80cf4e3a55067c5
parent: 09feefee1663ffc3395802b730c17912aa39a8f8
author: Werner Lemberg <[email protected]>
date: Tue Dec 11 09:09:06 EST 2001

* src/sfnt/ttload.c (TT_Load_Generic_Header): Typos.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,32 +1,34 @@
-2001-12-11  David Turner  <[email protected]>
+2001-12-11  Werner Lemberg  <[email protected]>
 
-        * builds/unix/freetype-config.in: modified the script to prevent
-        passing "-L/usr/lib" to gcc
+	* src/sfnt/ttload.c (TT_Load_Generic_Header): Typos.
 
-        * docs/FTL.TXT: simple fix (change "LICENSE.TXT" to "FTL.TXT")
+2001-12-11  David Turner  <[email protected]>
 
-        * 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..
+	* builds/unix/freetype-config.in: Modified the script to prevent
+	passing "-L/usr/lib" to gcc.
 
-        * INSTALL: updated the instructions to build shared libraries with
-        Jam.. they were simply erroneous..
+	* docs/FTL.TXT: Simple fix (change "LICENSE.TXT" to "FTL.TXT").
 
-        * 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 !!)
+	* 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.
 
+	* INSTALL: Updated the instructions to build shared libraries with
+	Jam.  They were simply wrong.
 
-2001-12-11  Detlef W�rkner >[email protected]>
+	* 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!).
 
-        * 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-11  Detlef W�rkner  <[email protected]>
 
+	* 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  <[email protected]>
 
-        * 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  <[email protected]>
 
--- 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;