files: when Mac format has been detected, stay with it

This fixes https://savannah.gnu.org/bugs/?60382.

Bug existed since commit 09b919a6 from three weeks ago.
master
Benno Schulenberg 2021-04-12 14:50:04 +02:00
parent 018a8e12ca
commit 8db42023bb
1 changed files with 1 additions and 1 deletions

View File

@ -699,7 +699,7 @@ void read_file(FILE *f, int fd, const char *filename, bool undoable)
format = DOS_FILE;
len--;
}
} else if ((num_lines == 0 || format == 2) &&
} else if ((num_lines == 0 || format == MAC_FILE) &&
len > 0 && buf[len - 1] == '\r' && !ISSET(NO_CONVERT)) {
format = MAC_FILE;
len--;