Skip to content

Commit bb6c27e

Browse files
committed
Escape the unmatched surrogates with lower-case hexadecimal numbers
It's done the same way for the rest of the codepoint escapes.
1 parent d1df3fe commit bb6c27e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/sys/common/wtf8.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ impl fmt::Debug for Wtf8 {
408408
&self.bytes[pos .. surrogate_pos]
409409
)},
410410
)?;
411-
write!(formatter, "\\u{{{:X}}}", surrogate)?;
411+
write!(formatter, "\\u{{{:x}}}", surrogate)?;
412412
pos = surrogate_pos + 3;
413413
}
414414
}
@@ -1066,7 +1066,7 @@ mod tests {
10661066
fn wtf8buf_show() {
10671067
let mut string = Wtf8Buf::from_str("a\té \u{7f}💩\r");
10681068
string.push(CodePoint::from_u32(0xD800).unwrap());
1069-
assert_eq!(format!("{:?}", string), "\"a\\\\u{7f}\u{1f4a9}\\r\\u{D800}\"");
1069+
assert_eq!(format!("{:?}", string), "\"a\\\\u{7f}\u{1f4a9}\\r\\u{d800}\"");
10701070
}
10711071

10721072
#[test]

0 commit comments

Comments
 (0)