This website requires JavaScript.
Explore
Help
Register
Sign In
shadowfacts
/
fonttools
Watch
1
Star
0
Fork
0
You've already forked fonttools
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
fonttools
/
Lib
/
fontTools
/
subset
History
ReadRoberts
dbcdde1bee
Fix bug in subsetting T2 CharStrings from CFF font. The logic seeks to avoid unnecessarily executing subroutines that have already been subroutinized. It is necessary execute all subroutines when counting hints in order to determine the byte length of mask arguments, but we want to quit doing this when we know that counting hints is no longer necessary,. The previous logic stopped when a [vh]stem operator was seen, as this means there will not be need for hintmask mask arguments However, the [vh]stem operators can be used even when there is a cntrmask, so the logic stopped counting hints too early.
2019-04-30 09:43:13 -07:00
..
__init__.py
Merge pull request
#1588
from fonttools/hvar-vvar-retain-gids
2019-04-26 06:55:17 -07:00
__main__.py
don't use sys.exit(...) inside main(), but only under
if __name__ == "__main__"
2017-01-11 12:10:58 +00:00
cff.py
Fix bug in subsetting T2 CharStrings from CFF font. The logic seeks to avoid unnecessarily executing subroutines that have already been subroutinized. It is necessary execute all subroutines when counting hints in order to determine the byte length of mask arguments, but we want to quit doing this when we know that counting hints is no longer necessary,. The previous logic stopped when a [vh]stem operator was seen, as this means there will not be need for hintmask mask arguments However, the [vh]stem operators can be used even when there is a cntrmask, so the logic stopped counting hints too early.
2019-04-30 09:43:13 -07:00