From 3de8a2533978f2e296b418a1ab0ae41deb00fa40 Mon Sep 17 00:00:00 2001 From: Karoly Lorentey Date: Sat, 29 May 2004 15:23:07 +0000 Subject: [PATCH] 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 --- README.multi-tty | 1 + src/xterm.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/README.multi-tty b/README.multi-tty index 649a01590d9..321f1dd6e79 100644 --- a/README.multi-tty +++ b/README.multi-tty @@ -184,6 +184,7 @@ Robert J. Chassell Romain Francoise Ami Fischman Friedrich Delgado Friedrichs +Yoshiaki Kasahara Istvan Marko Dan Nicolaescu Gergely Nagy diff --git a/src/xterm.c b/src/xterm.c index b8be6c13041..289f7771852 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -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); }