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

This commit is contained in:
Hisham Muhammad 2015-02-04 11:41:02 -02:00
parent 6302b3e593
commit cfc773f7ee
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}