mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-29 18:51:15 -03:00
fix enum warning.
This commit is contained in:
committed by
Fabian Homborg
parent
b4a6daef11
commit
a483643626
@@ -1436,7 +1436,7 @@ static bool unescape_string_internal(const wchar_t *const input, const size_t in
|
||||
case L'\t':
|
||||
case L' ': {
|
||||
if (unescape_special && brace_count > 0) {
|
||||
to_append_or_none = brace_text_start ? BRACE_SPACE : NOT_A_WCHAR;
|
||||
to_append_or_none = brace_text_start ? wint_t(BRACE_SPACE) : NOT_A_WCHAR;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user