1
1

* execute.c (toggle_panels): Fix error. show_output_starts_shell=1

is not working
        * cmd.c (view_other_cmd): Likewise.
Этот коммит содержится в:
Andrew V. Samoilov 2004-09-12 10:52:17 +00:00
родитель 259bc3957b
Коммит e3698948a4
3 изменённых файлов: 10 добавлений и 2 удалений

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

@ -1,3 +1,11 @@
2004-09-12 Pavel Shirshov <pavelsh@mail.ru>
* execute.c (toggle_panels): Fix error. show_output_starts_shell=1
is not working
* cmd.c (view_other_cmd): Likewise.
From Petr Hadraba <hadrabap@volny.cz>
2004-09-10 Jakub Jelinek <jakub@redhat.com>
* view.c (get_byte): Fix avoid dying if file is too large

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

@ -919,7 +919,7 @@ view_other_cmd (void)
{
static int message_flag = TRUE;
if (!xterm_flag && !console_flag && !use_subshell) {
if (!xterm_flag && !console_flag && !use_subshell && !output_starts_shell) {
if (message_flag)
message (1, MSG_ERROR,
_(" Not an xterm or Linux console; \n"

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

@ -235,7 +235,7 @@ toggle_panels (void)
_("Type `exit' to return to the Midnight Commander"));
fprintf (stderr, "\n\r\n\r");
my_system (EXECUTE_AS_SHELL, shell, NULL);
my_system (EXECUTE_INTERNAL, shell, NULL);
} else
get_key_code (0);
}