texlive[46551]

commits+karl at tug.org commits+karl at tug.org
Mon Feb 5 23:52:39 CET 2018


Revision: 46551
          http://tug.org/svn/texlive?view=revision&revision=46551
Author:   karl
Date:     2018-02-05 23:52:38 +0100 (Mon, 05 Feb 2018)
Log Message:
-----------
flex handling bug in freetype per wl mail to pdftex, 23 Jan 2018 23:36:06, http://git.savannah.gnu.org/cgit/freetype/freetype2.git/commit/?id=cc2f3cdecff5a351e7e8961b9f2e389ab740231a

Modified Paths:
--------------
    trunk/Build/source/libs/freetype2/freetype-src/src/psaux/psintrp.c

Modified: trunk/Build/source/libs/freetype2/freetype-src/src/psaux/psintrp.c
===================================================================
--- trunk/Build/source/libs/freetype2/freetype-src/src/psaux/psintrp.c	2018-02-05 21:55:52 UTC (rev 46550)
+++ trunk/Build/source/libs/freetype2/freetype-src/src/psaux/psintrp.c	2018-02-05 22:52:38 UTC (rev 46551)
@@ -852,7 +852,8 @@
 
         curY = ADD_INT32( curY, cf2_stack_popFixed( opStack ) );
 
-        cf2_glyphpath_moveTo( &glyphPath, curX, curY );
+        if ( !decoder->flex_state )
+          cf2_glyphpath_moveTo( &glyphPath, curX, curY );
 
         break;
 
@@ -2674,7 +2675,8 @@
 
         curX = ADD_INT32( curX, cf2_stack_popFixed( opStack ) );
 
-        cf2_glyphpath_moveTo( &glyphPath, curX, curY );
+        if ( !decoder->flex_state )
+          cf2_glyphpath_moveTo( &glyphPath, curX, curY );
 
         break;
 



More information about the tex-live-commits mailing list