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 ARISAWA Akihiro Vincent Bernat Han Boetes +Francisco Borges Damien Cassou Robert J. Chassell Romain Francoise @@ -52,8 +53,8 @@ Gergely Nagy Dan Nicolaescu Kalle Olavi Niemitalo Mark Plaksin -Francisco Borges Frank Ruell +Tom Schutzer-Weissmann Dan Waber and many others. @@ -392,6 +393,9 @@ is probably not very interesting for anyone else.) THINGS TO DO ------------ +** Emacs crashes when a tty frame is resized so that there is no space + for all its windows. (Tom Schutzer-Weissmann) + ** Report GTK multi-display problems to GTK maintainers. For extra credit, fix them. 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, */ #ifndef USE_CRT_DLL extern int errno; #endif - int old_errno = errno; + int old_errno = errno;x struct tty_display_info *tty; @@ -6068,7 +6068,7 @@ window_change_signal (signalnum) /* If we don't have an argument, */ get_tty_size (fileno (tty->input), &width, &height); - { + if (width > 5 && height > 2) { Lisp_Object tail, frame; FOR_EACH_FRAME (tail, frame)