mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-01 13:01:21 -03:00
Merge branch 'master' into death_of_fishd
This commit is contained in:
@@ -335,7 +335,7 @@ static wcstring full_escape(const wchar_t *in)
|
||||
{
|
||||
out.push_back(c);
|
||||
}
|
||||
else if (c <= ASCII_MAX)
|
||||
else if (c <= (wchar_t)ASCII_MAX)
|
||||
{
|
||||
// See #1225 for discussion of use of ASCII_MAX here
|
||||
append_format(out, L"\\x%.2x", c);
|
||||
|
||||
Reference in New Issue
Block a user