* 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:
Pavel Roskin 2002-07-03 05:56:49 +00:00
parent 23ef3d3a9d
commit 90ae932bf6
2 changed files with 15 additions and 4 deletions

View File

@ -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.

View File

@ -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 ();
}
}