- Unconditionally disable VDSUSP if it exists, stops ^Y
suspending nano on the Hurd.
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:
update_line()
- set realdata check to >= 1 && <= 31, lack of > 0 check screwed
#ifndef NANO_SMALL
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)
- statusbar(_("Read %d lines (Converted DOS format)"), num_lines);
+ statusbar(_("Read %d lines (Converted from DOS format)"), num_lines);
else
#endif
statusbar(_("Read %d lines"), num_lines);