diff --git a/src/display_buffer.cc b/src/display_buffer.cc index d6707747..d9ff4778 100644 --- a/src/display_buffer.cc +++ b/src/display_buffer.cc @@ -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)}};