1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-10 05:30:45 -08:00

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
This commit is contained in:
Karoly Lorentey 2004-05-29 15:23:07 +00:00
parent 7c10362ec7
commit 3de8a25339
2 changed files with 3 additions and 0 deletions

View 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>

View 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);
}