Fix non-ASCII issues in 3rd party files. Refs #915

* Each of these have been reported upstream respectively, but changing
  it manually here to avoid a potentially long turnaround time.
This commit is contained in:
Baldur Karlsson
2018-03-13 20:21:50 +00:00
parent f49dfadc9a
commit 3b239dcfa9
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ const char *CaseConvert(int character, enum CaseConversion conversion);
// When performing CaseConvertString, the converted value may be up to 3 times longer than the input.
// Ligatures are often decomposed into multiple characters and long cases include:
// ΐ "\xce\x90" folds to ΐ "\xce\xb9\xcc\x88\xcc\x81"
// "\xce\x90" folds to "\xce\xb9\xcc\x88\xcc\x81"
const int maxExpansionCaseConversion=3;
// Converts a mixed case string using a particular conversion.