ref: d17cabf57d1ab5e0b6ca2562bc2d6386c6a506f6
parent: 4e754133342d109881a56a5cee77ae613435d37d
author: Werner Lemberg <[email protected]>
date: Sat Jul 26 05:53:50 EDT 2014
[cff] Fix typo. * src/cff/cf2hints.c (cf2_glyphpath_computeOffset): Use correct offsets in third quadrant. Reported by maks <[email protected]>.
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2014-07-26 Werner Lemberg <[email protected]>
+
+ [cff] Fix typo.
+
+ * src/cff/cf2hints.c (cf2_glyphpath_computeOffset): Use correct
+ offsets in third quadrant.
+
+ Reported by maks <[email protected]>.
+
2014-07-17 Werner Lemberg <[email protected]>
Fix Savannah bug #42788.
--- a/src/cff/cf2hints.c
+++ b/src/cff/cf2hints.c
@@ -1560,7 +1560,7 @@
{
/* -y */
*x = -glyphpath->xOffset;
- *y = glyphpath->xOffset;
+ *y = glyphpath->yOffset;
}
else
{