From c2f4ecb4e615086c32adcb395f6b6ef42e8f06ef Mon Sep 17 00:00:00 2001 From: mdw Date: Tue, 27 Jul 1999 14:04:19 +0000 Subject: [PATCH] (Bug fix) Include the SIGWINCH handler even if `wresize' isn't known. --- src/pres_curses.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/pres_curses.c b/src/pres_curses.c index f0a14d0..7ed1b72 100644 --- a/src/pres_curses.c +++ b/src/pres_curses.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: pres_curses.c,v 1.5 1999/07/27 12:49:16 mdw Exp $ + * $Id: pres_curses.c,v 1.6 1999/07/27 14:04:19 mdw Exp $ * * Curses-based output presentation * @@ -29,7 +29,10 @@ /*----- Revision history --------------------------------------------------* * * $Log: pres_curses.c,v $ - * Revision 1.5 1999/07/27 12:49:16 mdw + * Revision 1.6 1999/07/27 14:04:19 mdw + * (Bug fix) Include the SIGWINCH handler even if `wresize' isn't known. + * + * Revision 1.5 1999/07/27 12:49:16 mdw * Slight tidying of resizing terminal handling. * * Revision 1.4 1999/07/16 16:52:28 mdw @@ -250,7 +253,7 @@ int curses_init(archcons *a) } doupdate(); -#ifdef HAVE_WRESIZE +#ifdef SIGWINCH signal(SIGWINCH, sig_winch); #endif #ifdef SIGTSTP -- 2.11.0