Encode all ENCODE_DIRECT codepoints with encode_direct

forward-port of 09986f5563
This commit is contained in:
Fabian Boehm
2023-12-10 09:29:42 +01:00
parent e380654fff
commit eb196c8330
3 changed files with 13 additions and 6 deletions

View File

@@ -979,6 +979,9 @@ pub fn read_unquoted_escape(
}
if let Some(c) = result_char_or_none {
if fish_reserved_codepoint(c) {
return None;
}
result.push(c);
}
@@ -1134,9 +1137,7 @@ pub fn str2wcstring(inp: &[u8]) -> WString {
Some(codepoint) => {
c = codepoint;
// Determine whether to encode this character with our crazy scheme.
(c >= ENCODE_DIRECT_BASE && c < ENCODE_DIRECT_END)
||
c == INTERNAL_SEPARATOR
fish_reserved_codepoint(c)
||
// Incomplete sequence.
ret == 0_usize.wrapping_sub(2)