This patch fixes a bug in bash. This patch is against bash 2.05 the issue is that when running 'suspend' command, to suspend shell it should call 'SIGTSTP' instead of 'SIGSTOP', as it seem to do the right thing when it is the last shell. Adam Sulmcki Tue Apr 24 21:59:16 EST 2001 Sun May 20 21:10:17 EST 2001 http://www.eax.com/patches/ ------------------------------------------------------------------------------- --- bash-2.05/builtins/suspend.def-old Sun May 20 20:56:08 2001 +++ bash-2.05/builtins/suspend.def Sun May 20 20:56:26 2001 @@ -110,7 +110,7 @@ #if 0 old_stop = (SigHandler *)set_signal_handler (SIGSTOP, SIG_DFL); #endif - killpg (shell_pgrp, SIGSTOP); + killpg (shell_pgrp, SIGTSTP); return (EXECUTION_SUCCESS); }