Commit 1c2b3567 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

tweaks: adjust some indentation

parent add0d698
Showing with 15 additions and 18 deletions
+15 -18
......@@ -919,21 +919,18 @@ void read_file(FILE *f, int fd, const char *filename, bool undoable, bool checkw
if (!writable)
statusline(ALERT, "File '%s' is unwritable", filename);
else if (format == 3) {
statusline(HUSH,
/* TRANSLATORS: Keep the next four messages at most 76 characters. */
P_("Read %lu line (Converted from DOS and Mac format)",
/* TRANSLATORS: Keep the next four messages at most 78 characters. */
statusline(HUSH, P_("Read %lu line (Converted from DOS and Mac format)",
"Read %lu lines (Converted from DOS and Mac format)",
(unsigned long)num_lines), (unsigned long)num_lines);
} else if (format == 2) {
openfile->fmt = MAC_FILE;
statusline(HUSH,
P_("Read %lu line (Converted from Mac format)",
statusline(HUSH, P_("Read %lu line (Converted from Mac format)",
"Read %lu lines (Converted from Mac format)",
(unsigned long)num_lines), (unsigned long)num_lines);
} else if (format == 1) {
openfile->fmt = DOS_FILE;
statusline(HUSH,
P_("Read %lu line (Converted from DOS format)",
statusline(HUSH, P_("Read %lu line (Converted from DOS format)",
"Read %lu lines (Converted from DOS format)",
(unsigned long)num_lines), (unsigned long)num_lines);
} else
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment