changeset 83141:8d02e70dd3cc

Don't ignore SIGWINCH under X (contributed by Yoshiaki Kasahara). 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
author Karoly Lorentey <lorentey@elte.hu>
date Sat, 29 May 2004 15:23:07 +0000
parents caa7581d3828
children 62cf3d6337a0
files README.multi-tty src/xterm.c
diffstat 2 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/README.multi-tty	Thu May 27 18:23:48 2004 +0000
+++ b/README.multi-tty	Sat May 29 15:23:07 2004 +0000
@@ -184,6 +184,7 @@
 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>
--- a/src/xterm.c	Thu May 27 18:23:48 2004 +0000
+++ b/src/xterm.c	Sat May 29 15:23:07 2004 +0000
@@ -10891,9 +10891,11 @@
   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);
 }