This commit is contained in:
Sean E. Russell 2021-08-18 16:11:05 -05:00
parent 9483a7f010
commit 450feedc11

View File

@ -738,6 +738,9 @@ func toUC(text string) []string {
textUnQ := textQ[1 : len(textQ)-1]
st := strings.Replace(textUnQ, "\\u", "U", -1)
if st == "\\\\" {
st = "\\"
}
uc = append(uc, st)
}