diff options
Diffstat (limited to 'src/utils/strwidth.nim')
-rw-r--r-- | src/utils/strwidth.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/strwidth.nim b/src/utils/strwidth.nim index bcf9d034..a27cb8b1 100644 --- a/src/utils/strwidth.nim +++ b/src/utils/strwidth.nim @@ -98,7 +98,7 @@ func isDoubleWidthAmbiguousHigh(r: Rune): bool = return r.isDoubleWidthHigh() func isCombining(r: Rune): bool = - return DoubleWidthAmbiguousRanges.isInRange(uint32(r)) + return Combining.isInRange(uint32(r)) # Lookup tables for characters on the BMP. This "only" takes up 8k of space # per table, as opposed to the 135k that storing all characters would require. |