1
1

files: leave out the confusing "[from ./]" when prompting for a command

This fixes https://savannah.gnu.org/bugs/?49892.
Этот коммит содержится в:
Benno Schulenberg 2017-01-18 21:28:33 +01:00
родитель c88d7ce530
Коммит 605f031833

Просмотреть файл

@ -1069,10 +1069,11 @@ void do_insertfile(void)
if (execute) {
#ifndef DISABLE_MULTIBUFFER
if (ISSET(MULTIBUFFER))
msg = _("Command to execute in new buffer [from %s] ");
/* TRANSLATORS: The next four messages are prompts. */
msg = _("Command to execute in new buffer");
else
#endif
msg = _("Command to execute [from %s] ");
msg = _("Command to execute");
} else
#endif /* NANO_TINY */
{