You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if_ibmeci.params[9] in (65536, 65537): text=resub(english_fixes, text)
230
+
if_ibmeci.params[9] in (65536, 65537, 393216, 655360): text=resub(english_fixes, text)#Applies to Chinese and Korean as they can read English text and thus inherit the English bugs.
233
231
if_ibmeci.params[9] in (131072, 131073): text=resub(spanish_fixes, text)
234
232
if_ibmeci.params[9] in (196609, 196608):
235
233
text=resub(french_fixes, text)
@@ -240,7 +238,6 @@ def processText(self,text):
240
238
text=text.encode(self.currentEncoding, 'replace') # special unicode symbols may encode to backquote. For this reason, backquote processing is after this.
241
239
ifnotself._backquoteVoiceTags:
242
240
text=text.replace(b'`', b' ') # no embedded commands
243
-
text=resub(anticrash_res, text)
244
241
ifself._shortpause:
245
242
text=pause_re.sub(br'\1 `p1\2\3\4', text) # this enforces short, JAWS-like pauses.
246
243
text=time_re.sub(br'\1:\2 \3', text) # apparently if this isn't done strings like 2:30:15 will only announce 2:30
0 commit comments