Add an extra signal call to the win_change function to make sure the SIGWINCH

handler isn't reset on certain systems.
This commit is contained in:
Ned T. Crigler 2004-07-01 23:31:39 +00:00
parent c869233b97
commit 945e54166a
1 changed files with 1 additions and 0 deletions

View File

@ -84,6 +84,7 @@ die(int sig)
static RETSIGTYPE
win_change()
{
signal(SIGWINCH, win_change);
win_changed = 1;
}