summaryrefslogtreecommitdiff
path: root/src/terminal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/terminal.c')
-rw-r--r--src/terminal.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/terminal.c b/src/terminal.c
index 4e62253d5..6927d6902 100644
--- a/src/terminal.c
+++ b/src/terminal.c
@@ -4094,7 +4094,12 @@ read_dump_file(FILE *fd, VTermPos *cursor_pos)
{
if (c == EOF)
break;
- if (c == '\n')
+ if (c == '\r')
+ {
+ // DOS line endings? Ignore.
+ c = fgetc(fd);
+ }
+ else if (c == '\n')
{
/* End of a line: append it to the buffer. */
if (ga_text.ga_data == NULL)