ref: 5cb5b4c9c3726ce150f6feb6b54fedc460b6f282
parent: 3c40d73d2cbe7b6e9e8e41542bb0e5bc8064a485
author: David Turner <[email protected]>
date: Sun Aug 17 19:00:59 EDT 2003
* src/autohint/ahhint.c (ah_hinter_load_glyph): fixed bug
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2003-08-18 David Turner <[email protected]>
+ * 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
--- 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 );