Skip to content

Commit 6322716

Browse files
Update ghost_terminal.cpp
1 parent bddc566 commit 6322716

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ghost_terminal.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ SSTP_link_t linker({{L"Charset",L"UTF-8"},{L"Sender",L"Ghost Terminal"}});
1515

1616
wstring&do_transfer(wstring &a) {
1717
replace_all(a, L"\\n", L"\n");
18-
replace_all(a, L"\\\n", L"\\n");
18+
replace_all(a, L"\\\n", L"\\\\n");
1919

2020
replace_all(a, L"\\t", L"\t");
21-
replace_all(a, L"\\\t", L"\\t");
21+
replace_all(a, L"\\\t", L"\\\\t");
2222

2323
replace_all(a, L"\\\\", L"\\");
2424
return a;

0 commit comments

Comments
 (0)