Commit 26aca0244d0888ba46bc0d661beb75d510eca6b6

Werner Lemberg 2002-05-05T07:40:16

formatting

diff --git a/ChangeLog b/ChangeLog
index 6755a8d..949e8f1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,29 +1,20 @@
 2002-05-04  David Turner  <david@freetype.org>
 
-        * src/truetype/ttgload.c (TT_Load_Glyph): finally fixing the last
-          bug that prevented FreeType 2.x and FreeType 1.x to produce
-          bit-by-bit identical monochrome glyph bitmaps with native TrueType
-          hinting. The culprit was a single-bit flag that wasn't set
-          correctly by the TrueType glyph loader !!
-
-        * src/otlayout/otlayout.h,
-          src/otlayout/otlbase.c,
-          src/otlayout/otlbase.h,
-          src/otlayout/otlconf.h,
-          src/otlayout/otlgdef.c,
-          src/otlayout/otlgdef.h,
-          src/otlayout/otlgpos.c,
-          src/otlayout/otlgpos.h,
-          src/otlayout/otlgsub.c,
-          src/otlayout/otlgsub.h,
-          src/otlayout/otljstf.c,
-          src/otlayout/otljstf.h,
-          src/otlayout/otltable.c,
-          src/otlayout/otltable.h,
-          src/otlayout/otltags.h:
-          
-            adding OpenType Layout source files. Module is still incomplete
-            
+	* src/truetype/ttgload.c (TT_Load_Glyph): Finally fixing the last
+	bug that prevented FreeType 2.x and FreeType 1.x to produce
+	bit-by-bit identical monochrome glyph bitmaps with native TrueType
+	hinting.  The culprit was a single-bit flag that wasn't set
+	correctly by the TrueType glyph loader.
+
+	* src/otlayout/otlayout.h, src/otlayout/otlbase.c,
+	src/otlayout/otlbase.h, src/otlayout/otlconf.h,
+	src/otlayout/otlgdef.c, src/otlayout/otlgdef.h,
+	src/otlayout/otlgpos.c, src/otlayout/otlgpos.h,
+	src/otlayout/otlgsub.c, src/otlayout/otlgsub.h,
+	src/otlayout/otljstf.c, src/otlayout/otljstf.h,
+	src/otlayout/otltable.c, src/otlayout/otltable.h,
+	src/otlayout/otltags.h: New OpenType Layout source files.  The
+	module is still incomplete.
 
 2002-05-02  Werner Lemberg  <wl@gnu.org>
 
diff --git a/src/truetype/ttgload.c b/src/truetype/ttgload.c
index bbd4850..c5c8dae 100644
--- a/src/truetype/ttgload.c
+++ b/src/truetype/ttgload.c
@@ -1578,14 +1578,13 @@
 
 #endif /* TT_CONFIG_OPTION_BYTECODE_INTERPRETER */
 
-    /* Don't forget to set the 'high precision' bit flag !!        */
-    /* This is _critical_ to get correct output for monochrome     */
-    /* TrueType glyphs at all sizes using the bytecode interpreter */
-    /*                                                             */
+    /* Set the `high precision' bit flag.                           */
+    /* This is _critical_ to get correct output for monochrome      */
+    /* TrueType glyphs at all sizes using the bytecode interpreter. */
+    /*                                                              */
     if ( size && size->root.metrics.y_ppem < 24 )
       glyph->outline.flags |= ft_outline_high_precision;
 
-
   Exit:
     return error;
   }