# HG changeset patch # User Karoly Lorentey # Date 1085844187 0 # Node ID 8d02e70dd3cc4ac7cf9e70206036a731f213913c # Parent caa7581d382811d57c0858b147c1bef13a27ef0b 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 ). git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-181 diff -r caa7581d3828 -r 8d02e70dd3cc README.multi-tty --- 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 Ami Fischman Friedrich Delgado Friedrichs +Yoshiaki Kasahara Istvan Marko Dan Nicolaescu Gergely Nagy diff -r caa7581d3828 -r 8d02e70dd3cc src/xterm.c --- 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); }