tweaks: exclude from the tiny version two messages that will never occur

master
Benno Schulenberg 2017-05-16 20:00:42 +02:00
parent c830b8f51c
commit e8f90789e9
1 changed files with 4 additions and 3 deletions

View File

@ -2127,11 +2127,12 @@ int do_writeout(bool exiting)
msg = (method == PREPEND) ? _("Prepend Selection to File") :
(method == APPEND) ? _("Append Selection to File") :
_("Write Selection to File");
else if (method != OVERWRITE)
msg = (method == PREPEND) ? _("File Name to Prepend to") :
_("File Name to Append to");
else
#endif /* !NANO_TINY */
msg = (method == PREPEND) ? _("File Name to Prepend to") :
(method == APPEND) ? _("File Name to Append to") :
_("File Name to Write");
msg = _("File Name to Write");
present_path = mallocstrcpy(present_path, "./");