Skip to content

Commit 8a666a0

Browse files
committed
fix:hanlde <next line> '\N' correctly
1 parent aba9ed6 commit 8a666a0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/exp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ std::string Escape(Stream& in) {
115115
case '/':
116116
return "/";
117117
case 'N':
118-
return "\x85";
118+
return "\xC2\x85"; // NEL (U+0085)
119119
case '_':
120120
return "\xC2\xA0"; // NBSP (U+00A0)
121121
case 'L':

0 commit comments

Comments
 (0)