Commit 5cb5b4c9c3726ce150f6feb6b54fedc460b6f282

David Turner 2003-08-17T23:00:59

* src/autohint/ahhint.c (ah_hinter_load_glyph): fixed bug

diff --git a/ChangeLog b/ChangeLog
index de2aa83..ced95e3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2003-08-18  David Turner  <david@freetype.org>
 
+        * src/autohint/ahhint.c (ah_hinter_load_glyph): fixed bug
+
         * Jamfile: adding the "refdoc" target to the Jamfile in order to
         build the API Reference in "docs/reference" automatically
 
diff --git a/src/autohint/ahhint.c b/src/autohint/ahhint.c
index ea0ad95..c4c8cfc 100644
--- a/src/autohint/ahhint.c
+++ b/src/autohint/ahhint.c
@@ -1850,12 +1850,9 @@
 
     hinter->do_stem_adjust   = FT_BOOL( hint_mode != FT_RENDER_MODE_LIGHT );
 
-#if 1
-    load_flags  = FT_LOAD_NO_SCALE
-                | FT_LOAD_IGNORE_TRANSFORM ;
-#else
-    load_flags |= FT_LOAD_NO_SCALE | FT_LOAD_NO_RECURSE;
-#endif
+
+    load_flags  |= FT_LOAD_NO_SCALE
+                 | FT_LOAD_IGNORE_TRANSFORM ;
 
     error = ah_hinter_load( hinter, glyph_index, load_flags, 0 );