Control character end at 0x1F
This commit is contained in:
parent
f6b6b94ba6
commit
af6885c0c9
|
@ -325,7 +325,7 @@ String fix_atom_text(StringView str)
|
|||
for (auto it = str.begin(), end = str.end(); it != end; ++it)
|
||||
{
|
||||
char c = *it;
|
||||
if (c <= 0x21 and c != ' ')
|
||||
if (c <= 0x1F)
|
||||
{
|
||||
res += StringView{pos, it};
|
||||
res += String{Codepoint{(uint32_t)(0x2400 + c)}};
|
||||
|
|
Loading…
Reference in New Issue
Block a user