We can use the composed codepoint for these instead of going the
decomposed route, for more accuracy and great justice.
Signed-off-by: Dan Scott <dscott@laurentian.ca>
# COMBINING CEDILLA
tmpsf = tmpsf.replace(u'\xb0c', u'c\u0327')
- # COMBINING ACUTE ACCENT
- tmpsf = tmpsf.replace(u'\xd4s', u's\u0301')
+ # S WITH COMBINING ACUTE ACCENT (lowercase)
+ tmpsf = tmpsf.replace(u'\xd4s', u'\u015b')
+ # S WITH COMBINING ACUTE ACCENT (uppercase)
+ tmpsf = tmpsf.replace(u'\xd4S', u'\u015a')
# COMBINING BREVE
tmpsf = tmpsf.replace(u'\xe6i', u'i\u0306')