1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
From e9c7dfa99221935ffa38b5b9dbf294933e0aa7c0 Mon Sep 17 00:00:00 2001
From: Benno Schulenberg <bensberg@telfort.nl>
Date: Fri, 3 May 2024 12:12:09 +0200
Subject: minibar: do not falsely report that a new, empty file is in Mac
format
The 'openfile->fmt' element gets initialized to 'UNSPECIFIED',
so the code has to take that possibility into account.
This fixes https://savannah.gnu.org/bugs/?65676.
Bug existed since version 8.0, commit fe4f74f6.
---
src/winio.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/src/winio.c
+++ b/src/winio.c
@@ -2213,7 +2213,7 @@ void minibar(void)
size_t count = openfile->filebot->lineno - (openfile->filebot->data[0] == '\0');
number_of_lines = nmalloc(49);
- if (openfile->fmt == NIX_FILE)
+ if (openfile->fmt == NIX_FILE || openfile->fmt == UNSPECIFIED)
sprintf(number_of_lines, P_(" (%zu line)", " (%zu lines)", count), count);
else
sprintf(number_of_lines, P_(" (%zu line, %s)", " (%zu lines, %s)", count),
|