mirror of
https://github.com/MidnightCommander/mc
synced 2025-04-05 14:43:06 +03:00
* cmd.c (view_other_cmd): Shut down extra select channels before
switching to the shell. Restore them afterwards, but not if quit was requested. Skip more code on quit.
This commit is contained in:
parent
23ef3d3a9d
commit
90ae932bf6
@ -1,3 +1,9 @@
|
|||||||
|
2002-07-03 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
|
* cmd.c (view_other_cmd): Shut down extra select channels before
|
||||||
|
switching to the shell. Restore them afterwards, but not if
|
||||||
|
quit was requested. Skip more code on quit.
|
||||||
|
|
||||||
2002-07-02 Pavel Roskin <proski@gnu.org>
|
2002-07-02 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
* util.c: Eliminate get_small_endian_long() and CHECK macro.
|
* util.c: Eliminate get_small_endian_long() and CHECK macro.
|
||||||
|
13
src/cmd.c
13
src/cmd.c
@ -931,6 +931,7 @@ view_other_cmd (void)
|
|||||||
" the panels cannot be toggled. "));
|
" the panels cannot be toggled. "));
|
||||||
message_flag = FALSE;
|
message_flag = FALSE;
|
||||||
} else {
|
} else {
|
||||||
|
channels_down ();
|
||||||
disable_mouse ();
|
disable_mouse ();
|
||||||
if (clear_before_exec)
|
if (clear_before_exec)
|
||||||
clr_scr ();
|
clr_scr ();
|
||||||
@ -974,7 +975,14 @@ view_other_cmd (void)
|
|||||||
|
|
||||||
reset_prog_mode ();
|
reset_prog_mode ();
|
||||||
keypad(stdscr, TRUE);
|
keypad(stdscr, TRUE);
|
||||||
|
|
||||||
|
/* Prevent screen flash when user did 'exit' or 'logout' within
|
||||||
|
subshell */
|
||||||
|
if (quit)
|
||||||
|
return;
|
||||||
|
|
||||||
enable_mouse ();
|
enable_mouse ();
|
||||||
|
channels_up ();
|
||||||
if (alternate_plus_minus)
|
if (alternate_plus_minus)
|
||||||
application_keypad_mode ();
|
application_keypad_mode ();
|
||||||
|
|
||||||
@ -991,10 +999,7 @@ view_other_cmd (void)
|
|||||||
#endif /* HAVE_SUBSHELL_SUPPORT */
|
#endif /* HAVE_SUBSHELL_SUPPORT */
|
||||||
touchwin (stdscr);
|
touchwin (stdscr);
|
||||||
|
|
||||||
/* prevent screen flash when user did 'exit' or 'logout' within
|
repaint_screen ();
|
||||||
subshell */
|
|
||||||
if (!quit)
|
|
||||||
repaint_screen ();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user