aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.multi-tty6
-rw-r--r--src/dispnew.c4
2 files changed, 7 insertions, 3 deletions
diff --git a/README.multi-tty b/README.multi-tty
index 7a9ed1fdada..5deb706c3c8 100644
--- a/README.multi-tty
+++ b/README.multi-tty
@@ -35,6 +35,7 @@ Bernard Adrian <bernadrian@free.fr>
35ARISAWA Akihiro <ari@mbf.ocn.ne.jp> 35ARISAWA Akihiro <ari@mbf.ocn.ne.jp>
36Vincent Bernat <bernat@luffy.cx> 36Vincent Bernat <bernat@luffy.cx>
37Han Boetes <han@mijncomputer.nl> 37Han Boetes <han@mijncomputer.nl>
38Francisco Borges <borges@let.rug.nl>
38Damien Cassou <damien.cassou@laposte.net> 39Damien Cassou <damien.cassou@laposte.net>
39Robert J. Chassell <bob@rattlesnake.com> 40Robert J. Chassell <bob@rattlesnake.com>
40Romain Francoise <romain@orebokech.com> 41Romain Francoise <romain@orebokech.com>
@@ -52,8 +53,8 @@ Gergely Nagy <algernon@debian.org>
52Dan Nicolaescu <dann@ics.uci.edu> 53Dan Nicolaescu <dann@ics.uci.edu>
53Kalle Olavi Niemitalo <kon@iki.fi> 54Kalle Olavi Niemitalo <kon@iki.fi>
54Mark Plaksin <happy@mcplaksin.org> 55Mark Plaksin <happy@mcplaksin.org>
55Francisco Borges <borges@let.rug.nl>
56Frank Ruell <stoerte@dreamwarrior.net> 56Frank Ruell <stoerte@dreamwarrior.net>
57Tom Schutzer-Weissmann <trmsw@yahoo.co.uk>
57Dan Waber <dwaber@logolalia.com> 58Dan Waber <dwaber@logolalia.com>
58and many others. 59and many others.
59 60
@@ -392,6 +393,9 @@ is probably not very interesting for anyone else.)
392THINGS TO DO 393THINGS TO DO
393------------ 394------------
394 395
396** Emacs crashes when a tty frame is resized so that there is no space
397 for all its windows. (Tom Schutzer-Weissmann)
398
395** Report GTK multi-display problems to GTK maintainers. For extra 399** Report GTK multi-display problems to GTK maintainers. For extra
396 credit, fix them. 400 credit, fix them.
397 401
diff --git a/src/dispnew.c b/src/dispnew.c
index 095400eb70d..0de517c5293 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -6050,7 +6050,7 @@ window_change_signal (signalnum) /* If we don't have an argument, */
6050#ifndef USE_CRT_DLL 6050#ifndef USE_CRT_DLL
6051 extern int errno; 6051 extern int errno;
6052#endif 6052#endif
6053 int old_errno = errno; 6053 int old_errno = errno;x
6054 6054
6055 struct tty_display_info *tty; 6055 struct tty_display_info *tty;
6056 6056
@@ -6068,7 +6068,7 @@ window_change_signal (signalnum) /* If we don't have an argument, */
6068 6068
6069 get_tty_size (fileno (tty->input), &width, &height); 6069 get_tty_size (fileno (tty->input), &width, &height);
6070 6070
6071 { 6071 if (width > 5 && height > 2) {
6072 Lisp_Object tail, frame; 6072 Lisp_Object tail, frame;
6073 6073
6074 FOR_EACH_FRAME (tail, frame) 6074 FOR_EACH_FRAME (tail, frame)