Commit 605f0318 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

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

This fixes https://savannah.gnu.org/bugs/?49892.
No related merge requests found
Showing with 3 additions and 2 deletions
+3 -2
...@@ -1069,10 +1069,11 @@ void do_insertfile(void) ...@@ -1069,10 +1069,11 @@ void do_insertfile(void)
if (execute) { if (execute) {
#ifndef DISABLE_MULTIBUFFER #ifndef DISABLE_MULTIBUFFER
if (ISSET(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 else
#endif #endif
msg = _("Command to execute [from %s] "); msg = _("Command to execute");
} else } else
#endif /* NANO_TINY */ #endif /* NANO_TINY */
{ {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment