We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 752fab9 commit 2434a13Copy full SHA for 2434a13
anyvm.py
@@ -728,10 +728,10 @@ def fatal(msg):
728
term.write(data);
729
} else {
730
const text = decoder.decode(data);
731
- const parts = text.split(/(\r?\n)/);
+ const parts = text.split(/(\\r?\\n)/);
732
733
for (const part of parts) {
734
- if (part === '\n' || part === '\r\n') {
+ if (part === '\\n' || part === '\\r\\n') {
735
if (needsTimestamp) {
736
term.write(getTimeStr());
737
needsTimestamp = false;
0 commit comments