Changes full_escape to not generate \x escapes for non-ASCII characters.

Partially reverts 51de269 . Fixes #1225
This commit is contained in:
ridiculousfish 2014-03-22 14:46:23 -07:00
parent 5f11854286
commit 06eb271bda

View file

@ -756,8 +756,9 @@ static wcstring full_escape(const wchar_t *in)
{
out.push_back(c);
}
else if (c < 256)
else if (c <= ASCII_MAX)
{
// See #1225 for discussion of use of ASCII_MAX here
append_format(out, L"\\x%.2x", c);
}
else if (c < 65536)