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 | a2558dd4d8d2546bed56667efbfb6e78977deb15 (patch) | |
| tree | ed75925d32da8b09572bf25ff60fcb7028a6b259 /scripts/GenerateCaseConvert.py | |
| parent | 3e34a68a4d2f61fc18c279fb1dbb8ac2724684c9 (diff) | |
| download | scintilla-mirror-a2558dd4d8d2546bed56667efbfb6e78977deb15.tar.gz | |
Backport: Extend script to cover last Unicode character.
Does not affect output.
Backport of changeset 7754:c7557ad4c958.
Diffstat (limited to 'scripts/GenerateCaseConvert.py')
| -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: |
