mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Replace a formatted string with just a character copy
This commit is contained in:
parent
2a6412481e
commit
11a444e914
1 changed files with 1 additions and 1 deletions
|
@ -396,7 +396,7 @@ void builtin_printf_state_t::print_esc_string(const wchar_t *str)
|
|||
if (*str == L'\\')
|
||||
str += print_esc(str, true);
|
||||
else
|
||||
this->append_format_output(L"%lc", *str);
|
||||
this->append_output(*str);
|
||||
}
|
||||
|
||||
/* Evaluate a printf conversion specification. START is the start of
|
||||
|
|
Loading…
Reference in a new issue