minibar: mention the file format when it's DOS or Mac

This provides feedback about the file format in a better way than
how it was done until the previous commit.
This commit is contained in:
Benno Schulenberg 2024-04-06 12:17:27 +02:00
parent 2b335060b0
commit fe4f74f631
1 changed files with 6 additions and 2 deletions

View File

@ -2215,8 +2215,12 @@ void minibar(void)
if (report_size && COLS > 35) {
size_t count = openfile->filebot->lineno - (openfile->filebot->data[0] == '\0');
number_of_lines = nmalloc(44);
sprintf(number_of_lines, P_(" (%zu line)", " (%zu lines)", count), count);
number_of_lines = nmalloc(49);
if (openfile->fmt == NIX_FILE)
sprintf(number_of_lines, P_(" (%zu line)", " (%zu lines)", count), count);
else
sprintf(number_of_lines, P_(" (%zu line, %s)", " (%zu lines, %s)", count),
count, (openfile->fmt == DOS_FILE) ? "DOS" : "Mac");
tallywidth = breadth(number_of_lines);
if (namewidth + tallywidth + 11 < COLS)
waddstr(footwin, number_of_lines);