Correct 2 rune printing

This commit is contained in:
gingerBill
2026-01-18 12:13:03 +00:00
parent 871cedc701
commit 625e17212d

View File

@@ -86,7 +86,7 @@ generate_encoding_entity_table :: proc() {
codepoint, codepoint2: int
codepoint, _ = strconv.parse_int(r1)
if r2 != "" {
codepoint2, _ = strconv.parse_int(r1)
codepoint2, _ = strconv.parse_int(r2)
}
desc, desc_ok := xml.find_child_by_ident(doc, id, "description")