Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

#ifdef SIGWINCH



An #ifdef SIGWINCH is missing at a spot in signals.c.  The following
patch should fix it; it's against 3.0.2:

--- signals.c.orig      Wed Jan 29 13:32:00 1997
+++ signals.c   Wed Jan 29 13:32:09 1997
@@ -486,9 +486,11 @@
         }
         break;
 
+#ifdef SIGWINCH
     case SIGWINCH:
         adjustwinsize();  /* check window size and adjust */
         break;
+#endif
 
     case SIGALRM:
         if (sigtrapped[SIGALRM]) {


-- 
Hrvoje Niksic <hniksic@xxxxxxx> | Student at FER Zagreb, Croatia
--------------------------------+--------------------------------
If a President doesn't do it to his wife, he'll do it to his country.



Messages sorted by: Reverse Date, Date, Thread, Author