1999-02-06 Miguel de Icaza <miguel@nuclecu.unam.mx>

* cmd.c (view_other_cmd): Do not use \r in translatable strings.
This commit is contained in:
Miguel de Icaza 1999-02-07 02:23:18 +00:00
parent 85e46b6b30
commit 2127b21146
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
1999-02-06 Miguel de Icaza <miguel@nuclecu.unam.mx>
* cmd.c (view_other_cmd): Do not use \r in translatable strings.
1999-02-04 Miguel de Icaza <miguel@nuclecu.unam.mx>
* widget.c (push_history): Only do check the history headings if

View File

@ -964,7 +964,9 @@ view_other_cmd (void)
{
if (output_starts_shell){
fprintf (stderr,
_("Type `exit' to return to the Midnight Commander\n\r\n\r"));
_("Type `exit' to return to the Midnight Commander"));
fprintf (stderr, "\n\r\n\r");
my_system (EXECUTE_AS_SHELL, shell, NULL);
} else
get_key_code (0);