Sfoglia il codice sorgente

Recalculate code points after non-Korean removal.

scossu 1 anno fa
parent
commit
98e2cfb811
1 ha cambiato i file con 1 aggiunte e 0 eliminazioni
  1. 1 0
      scriptshifter/hooks/korean/romanizer.py

+ 1 - 0
scriptshifter/hooks/korean/romanizer.py

@@ -290,6 +290,7 @@ def _kor_rom(kor):
             kor = kor[1:]
 
     rom_ls = []
+    cpoints = tuple(ord(c) for c in kor)
     for i in range(len(kor)):
         cp = cpoints[i] - CP_MIN
         ini = "i" + str(cp // 588)