mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
print_variables should use ellipsis_char instead of literal ellipsis
This commit is contained in:
parent
ef8ea97044
commit
084542b943
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue