files.c:read_file() - Make conversion message less confusing (suggested by Jordi)

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@955 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Chris Allegretta 2001-12-27 20:53:54 +00:00
parent 05d8ce9adf
commit 64dd95dd75
2 changed files with 6 additions and 3 deletions

View File

@ -7,7 +7,10 @@ CVS code -
- Unconditionally disable VDSUSP if it exists, stops ^Y - Unconditionally disable VDSUSP if it exists, stops ^Y
suspending nano on the Hurd. suspending nano on the Hurd.
help_init() help_init()
- Typo fixes in help strings. - Typo fixes in help strings (Jordi).
- files.c:
read_file()
- Make conversion message less confusing (suggested by Jordi).
- winio.c: - winio.c:
update_line() update_line()
- set realdata check to >= 1 && <= 31, lack of > 0 check screwed - set realdata check to >= 1 && <= 31, lack of > 0 check screwed

View File

@ -259,9 +259,9 @@ int read_file(int fd, char *filename, int quiet)
#ifndef NANO_SMALL #ifndef NANO_SMALL
if (fileformat == 2) if (fileformat == 2)
statusbar(_("Read %d lines (Converted Mac format)"), num_lines); statusbar(_("Read %d lines (Converted from Mac format)"), num_lines);
else if (fileformat == 1) else if (fileformat == 1)
statusbar(_("Read %d lines (Converted DOS format)"), num_lines); statusbar(_("Read %d lines (Converted from DOS format)"), num_lines);
else else
#endif #endif
statusbar(_("Read %d lines"), num_lines); statusbar(_("Read %d lines"), num_lines);