print_variables should use ellipsis_char instead of literal ellipsis

This commit is contained in:
ridiculousfish 2013-04-19 10:20:47 -07:00
parent ef8ea97044
commit 084542b943

View file

@ -371,7 +371,7 @@ static void print_variables(int include_values, int esc, bool shorten_ok, int sc
if (shorten)
{
stdout_buffer.append(L"\u2026");
stdout_buffer.push_back(ellipsis_char);
}
}