aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKaroly Lorentey2004-05-29 15:23:07 +0000
committerKaroly Lorentey2004-05-29 15:23:07 +0000
commit3de8a2533978f2e296b418a1ab0ae41deb00fa40 (patch)
tree17a5d2ecce59d4de9e5238818164def3971a0f27 /src
parent7c10362ec7eeba1ba6e0c36c0ac6bc66b27620bd (diff)
downloademacs-3de8a2533978f2e296b418a1ab0ae41deb00fa40.tar.gz
emacs-3de8a2533978f2e296b418a1ab0ae41deb00fa40.zip
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
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c2
1 files changed, 2 insertions, 0 deletions
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 ()
10891 XSetIOErrorHandler (x_io_error_quitter); 10891 XSetIOErrorHandler (x_io_error_quitter);
10892 10892
10893 /* Disable Window Change signals; they are handled by X events. */ 10893 /* Disable Window Change signals; they are handled by X events. */
10894#if 0 /* Don't. We may want to open tty frames later. */
10894#ifdef SIGWINCH 10895#ifdef SIGWINCH
10895 signal (SIGWINCH, SIG_DFL); 10896 signal (SIGWINCH, SIG_DFL);
10896#endif /* SIGWINCH */ 10897#endif /* SIGWINCH */
10898#endif
10897 10899
10898 signal (SIGPIPE, x_connection_signal); 10900 signal (SIGPIPE, x_connection_signal);
10899} 10901}