mirror of
https://github.com/MidnightCommander/mc
synced 2025-04-03 21:52:58 +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>
|
||||
|
||||
* 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. "));
|
||||
message_flag = FALSE;
|
||||
} else {
|
||||
channels_down ();
|
||||
disable_mouse ();
|
||||
if (clear_before_exec)
|
||||
clr_scr ();
|
||||
@ -974,7 +975,14 @@ view_other_cmd (void)
|
||||
|
||||
reset_prog_mode ();
|
||||
keypad(stdscr, TRUE);
|
||||
|
||||
/* Prevent screen flash when user did 'exit' or 'logout' within
|
||||
subshell */
|
||||
if (quit)
|
||||
return;
|
||||
|
||||
enable_mouse ();
|
||||
channels_up ();
|
||||
if (alternate_plus_minus)
|
||||
application_keypad_mode ();
|
||||
|
||||
@ -991,10 +999,7 @@ view_other_cmd (void)
|
||||
#endif /* HAVE_SUBSHELL_SUPPORT */
|
||||
touchwin (stdscr);
|
||||
|
||||
/* prevent screen flash when user did 'exit' or 'logout' within
|
||||
subshell */
|
||||
if (!quit)
|
||||
repaint_screen ();
|
||||
repaint_screen ();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user