do_writeout()
- Refactor so that no recursion is needed if we try to exit with
a modified file that has no name when TEMP_OPT is set. (DLR)
+ - Add spaces to the ends of the "Overwrite" and "Different Name"
+ prompts, for consistency. (DLR)
do_browser()
- Call check_statblank() instead of blanking the statusbar
unconditionally, for consistency. (David Benbennick)
struct stat st;
if (!stat(answer, &st)) {
- i = do_yesno(FALSE, _("File exists, OVERWRITE ?"));
+ i = do_yesno(FALSE, _("File exists, OVERWRITE ? "));
if (i == 0 || i == -1)
continue;
/* If we're using restricted mode, we aren't allowed to
&& (exiting || !ISSET(MARK_ISSET))
#endif
) {
- i = do_yesno(FALSE, _("Save file under DIFFERENT NAME ?"));
+ i = do_yesno(FALSE, _("Save file under DIFFERENT NAME ?" ));
if (i == 0 || i == -1)
continue;
}