Replace a formatted string with just a character copy

This commit is contained in:
ridiculousfish 2013-04-03 13:30:45 -07:00
parent 2a6412481e
commit 11a444e914

View file

@ -396,7 +396,7 @@ void builtin_printf_state_t::print_esc_string(const wchar_t *str)
if (*str == L'\\') if (*str == L'\\')
str += print_esc(str, true); str += print_esc(str, true);
else else
this->append_format_output(L"%lc", *str); this->append_output(*str);
} }
/* Evaluate a printf conversion specification. START is the start of /* Evaluate a printf conversion specification. START is the start of