added refactoring note

git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@548 4cde692c-a291-49d1-8350-778aa11640f8
This commit is contained in:
jvr 2008-03-09 21:43:19 +00:00
parent ce47e0d978
commit e5b245fd07

View File

@ -477,6 +477,10 @@ _equivalents = {
'JstfMax': ('ShrinkageJstfMax', 'ExtensionJstfMax',),
}
#
# OverFlow logic, to automatically create ExtensionLookups
# XXX This should probably move to otBase.py
#
def fixLookupOverFlows(ttf, overflowRecord):
""" Either the offset from the LookupList to a lookup overflowed, or
@ -661,6 +665,7 @@ def fixSubTableOverFlows(ttf, overflowRecord):
ok = splitFunc(subtable, newSubTable, overflowRecord)
return ok
# End of OverFlow logic
def _buildClasses():