Commit cfc773f7 authored by Hisham Muhammad's avatar Hisham Muhammad
Browse files

Use UTF-8 only when using UTF-8 :-)

parent 6302b3e5
...@@ -42,7 +42,7 @@ static void ListItem_display(Object* cast, RichString* out) { ...@@ -42,7 +42,7 @@ static void ListItem_display(Object* cast, RichString* out) {
snprintf(buffer, len, "%s", this->value); snprintf(buffer, len, "%s", this->value);
*/ */
if (this->moving) { if (this->moving) {
RichString_write(out, CRT_colors[DEFAULT_COLOR], "↕ "); RichString_write(out, CRT_colors[DEFAULT_COLOR], CRT_utf8 ? "↕ " : "+ ");
} else { } else {
RichString_prune(out); RichString_prune(out);
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment