diff options
| author | Karoly Lorentey | 2004-05-29 15:23:07 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2004-05-29 15:23:07 +0000 |
| commit | 3de8a2533978f2e296b418a1ab0ae41deb00fa40 (patch) | |
| tree | 17a5d2ecce59d4de9e5238818164def3971a0f27 | |
| parent | 7c10362ec7eeba1ba6e0c36c0ac6bc66b27620bd (diff) | |
| download | emacs-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
| -rw-r--r-- | README.multi-tty | 1 | ||||
| -rw-r--r-- | src/xterm.c | 2 |
2 files changed, 3 insertions, 0 deletions
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 <bob at rattlesnake dot com> | |||
| 184 | Romain Francoise <romain at orebokech dot com> | 184 | Romain Francoise <romain at orebokech dot com> |
| 185 | Ami Fischman <ami at fischman dot org> | 185 | Ami Fischman <ami at fischman dot org> |
| 186 | Friedrich Delgado Friedrichs <friedel at nomaden dot org> | 186 | Friedrich Delgado Friedrichs <friedel at nomaden dot org> |
| 187 | Yoshiaki Kasahara <kasahara at nc dot kyushu-u dot ac dot jp> | ||
| 187 | Istvan Marko <mi-mtty ar kismala dot com> | 188 | Istvan Marko <mi-mtty ar kismala dot com> |
| 188 | Dan Nicolaescu <dann at ics dot uci dot edu> | 189 | Dan Nicolaescu <dann at ics dot uci dot edu> |
| 189 | Gergely Nagy <algernon at debian dot org> | 190 | Gergely Nagy <algernon at debian dot org> |
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 | } |