mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Merge #3184
3184: Add non-space blanks: Hangul Filler characters r=Jupeyy a=def- Taken from https://en.wikipedia.org/wiki/Whitespace_character#Non-space_blanks Had to Hangul Jungseong Filler to that Wiki article as it was missing. <!-- What is the motivation for the changes of this pull request --> ## Checklist - [ ] Tested the change ingame - [ ] Provided screenshots if it is a visual change - [ ] Tested in combination with possibly related configuration options - [ ] Written a unit test if it works standalone, system.c especially - [ ] Considered possible null pointers and out of bounds array indexing - [ ] Changed no physics that affect existing maps - [ ] Tested the change with [ASan+UBSan or valgrind's memcheck](https://github.com/ddnet/ddnet/#using-addresssanitizer--undefinedbehavioursanitizer-or-valgrinds-memcheck) (optional) Co-authored-by: def <dennis@felsin9.de>
This commit is contained in:
commit
58afe9fc0a
|
@ -2963,11 +2963,11 @@ const char *str_utf8_find_nocase(const char *haystack, const char *needle)
|
||||||
int str_utf8_isspace(int code)
|
int str_utf8_isspace(int code)
|
||||||
{
|
{
|
||||||
return code <= 0x0020 || code == 0x0085 || code == 0x00A0 ||
|
return code <= 0x0020 || code == 0x0085 || code == 0x00A0 ||
|
||||||
code == 0x034F || code == 0x1680 || code == 0x180E ||
|
code == 0x034F || code == 0x1160 || code == 0x1680 || code == 0x180E ||
|
||||||
(code >= 0x2000 && code <= 0x200F) || (code >= 0x2028 && code <= 0x202F) ||
|
(code >= 0x2000 && code <= 0x200F) || (code >= 0x2028 && code <= 0x202F) ||
|
||||||
(code >= 0x205F && code <= 0x2064) || (code >= 0x206A && code <= 0x206F) ||
|
(code >= 0x205F && code <= 0x2064) || (code >= 0x206A && code <= 0x206F) ||
|
||||||
code == 0x2800 || code == 0x3000 ||
|
code == 0x2800 || code == 0x3000 || code == 0x3164 ||
|
||||||
(code >= 0xFE00 && code <= 0xFE0F) || code == 0xFEFF ||
|
(code >= 0xFE00 && code <= 0xFE0F) || code == 0xFEFF || code == 0xFFA0 ||
|
||||||
(code >= 0xFFF9 && code <= 0xFFFC);
|
(code >= 0xFFF9 && code <= 0xFFFC);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue