Included OS X Lion (10.7) in special-casing establish_equivalencies(), as it also fails with curly apostrophes

This commit is contained in:
GRiker 2012-10-03 08:10:50 -06:00
parent c17b43d8cb
commit e90b5dbdd6

View File

@ -644,7 +644,7 @@ class CatalogBuilder(object):
c = item c = item
ordnum, ordlen = collation_order(c) ordnum, ordlen = collation_order(c)
if isosx and platform.mac_ver()[0] < '10.7': if isosx and platform.mac_ver()[0] < '10.8':
# Hackhackhackhackhack # Hackhackhackhackhack
# icu returns bogus results with curly apostrophes, maybe others under OS X 10.6.x # icu returns bogus results with curly apostrophes, maybe others under OS X 10.6.x
# When we see the magic combo of 0/-1 for ordnum/ordlen, special case the logic # When we see the magic combo of 0/-1 for ordnum/ordlen, special case the logic