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

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

parent 6302b3e5
Showing with 1 addition and 1 deletion
+1 -1
......@@ -42,7 +42,7 @@ static void ListItem_display(Object* cast, RichString* out) {
snprintf(buffer, len, "%s", this->value);
*/
if (this->moving) {
RichString_write(out, CRT_colors[DEFAULT_COLOR], "↕ ");
RichString_write(out, CRT_colors[DEFAULT_COLOR], CRT_utf8 ? "↕ " : "+ ");
} else {
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