Skip to content

Commit 462eddf

Browse files
committed
the right way I suppose v23
1 parent eb4e8fc commit 462eddf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tokenizer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2035,7 +2035,7 @@ impl<'a> Tokenizer<'a> {
20352035
s.push('\\');
20362036
chars.next();
20372037
if let Some(next) = chars.peek() {
2038-
s.push(*next);
2038+
s.push('\x08');
20392039
chars.next();
20402040
}
20412041
} else {

0 commit comments

Comments
 (0)