mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 23:58:50 +00:00
Fix track_graphemes
This commit is contained in:
@@ -107,8 +107,10 @@ decode_grapheme_clusters :: proc(
|
|||||||
|
|
||||||
it := decode_grapheme_iterator_make(str)
|
it := decode_grapheme_iterator_make(str)
|
||||||
for _, grapheme in decode_grapheme_iterate(&it) {
|
for _, grapheme in decode_grapheme_iterate(&it) {
|
||||||
|
if track_graphemes {
|
||||||
append(&graphemes, grapheme)
|
append(&graphemes, grapheme)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
grapheme_count = it.grapheme_count
|
grapheme_count = it.grapheme_count
|
||||||
rune_count = it.rune_count
|
rune_count = it.rune_count
|
||||||
|
|||||||
Reference in New Issue
Block a user