diff options
author | Zufu Liu <unknown> | 2019-11-02 08:54:05 +1100 |
---|---|---|
committer | Zufu Liu <unknown> | 2019-11-02 08:54:05 +1100 |
commit | 0d5f46a202286a896086f7a13c64ef8cc33847ec (patch) | |
tree | 31fbf041f9c6212b6cd3d6c7c88b806882a96dd0 | |
parent | a17e48f06b3e1e7d522c30bf00cc25ab78813396 (diff) | |
download | scintilla-mirror-0d5f46a202286a896086f7a13c64ef8cc33847ec.tar.gz |
Extend script to cover last Unicode character.
Does not affect output.
-rw-r--r-- | scripts/GenerateCaseConvert.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/GenerateCaseConvert.py b/scripts/GenerateCaseConvert.py index 1e85a1c43..5e2b39873 100644 --- a/scripts/GenerateCaseConvert.py +++ b/scripts/GenerateCaseConvert.py @@ -40,7 +40,7 @@ def conversionSets(): # with complex cases. complexes = [] symmetrics = [] - for ch in range(sys.maxunicode): + for ch in range(sys.maxunicode + 1): if ch >= 0xd800 and ch <= 0xDBFF: continue if ch >= 0xdc00 and ch <= 0xDFFF: |