Don't ignore SIGWINCH under X (contributed by Yoshiaki Kasahara).
authorKaroly Lorentey <lorentey@elte.hu>
Sat, 29 May 2004 15:23:07 +0000 (15:23 +0000)
committerKaroly Lorentey <lorentey@elte.hu>
Sat, 29 May 2004 15:23:07 +0000 (15:23 +0000)
src/xterm.c (x_initialize): Don't disable SIGWINCH (small fix
contributed by Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp>).

git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-181

README.multi-tty
src/xterm.c

index 649a015..321f1dd 100644 (file)
@@ -184,6 +184,7 @@ Robert J. Chassell <bob at rattlesnake dot com>
 Romain Francoise <romain at orebokech dot com>
 Ami Fischman <ami at fischman dot org>
 Friedrich Delgado Friedrichs <friedel at nomaden dot org>
+Yoshiaki Kasahara <kasahara at nc dot kyushu-u dot ac dot jp>
 Istvan Marko <mi-mtty ar kismala dot com>
 Dan Nicolaescu <dann at ics dot uci dot edu>
 Gergely Nagy <algernon at debian dot org>
index b8be6c1..289f777 100644 (file)
@@ -10891,9 +10891,11 @@ x_initialize ()
   XSetIOErrorHandler (x_io_error_quitter);
 
   /* Disable Window Change signals;  they are handled by X events.  */
+#if 0              /* Don't.  We may want to open tty frames later. */
 #ifdef SIGWINCH
   signal (SIGWINCH, SIG_DFL);
 #endif /* SIGWINCH */
+#endif
 
   signal (SIGPIPE, x_connection_signal);
 }