diff options
| -rw-r--r-- | README.multi-tty | 6 | ||||
| -rw-r--r-- | src/dispnew.c | 4 |
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> | |||
| 35 | ARISAWA Akihiro <ari@mbf.ocn.ne.jp> | 35 | ARISAWA Akihiro <ari@mbf.ocn.ne.jp> |
| 36 | Vincent Bernat <bernat@luffy.cx> | 36 | Vincent Bernat <bernat@luffy.cx> |
| 37 | Han Boetes <han@mijncomputer.nl> | 37 | Han Boetes <han@mijncomputer.nl> |
| 38 | Francisco Borges <borges@let.rug.nl> | ||
| 38 | Damien Cassou <damien.cassou@laposte.net> | 39 | Damien Cassou <damien.cassou@laposte.net> |
| 39 | Robert J. Chassell <bob@rattlesnake.com> | 40 | Robert J. Chassell <bob@rattlesnake.com> |
| 40 | Romain Francoise <romain@orebokech.com> | 41 | Romain Francoise <romain@orebokech.com> |
| @@ -52,8 +53,8 @@ Gergely Nagy <algernon@debian.org> | |||
| 52 | Dan Nicolaescu <dann@ics.uci.edu> | 53 | Dan Nicolaescu <dann@ics.uci.edu> |
| 53 | Kalle Olavi Niemitalo <kon@iki.fi> | 54 | Kalle Olavi Niemitalo <kon@iki.fi> |
| 54 | Mark Plaksin <happy@mcplaksin.org> | 55 | Mark Plaksin <happy@mcplaksin.org> |
| 55 | Francisco Borges <borges@let.rug.nl> | ||
| 56 | Frank Ruell <stoerte@dreamwarrior.net> | 56 | Frank Ruell <stoerte@dreamwarrior.net> |
| 57 | Tom Schutzer-Weissmann <trmsw@yahoo.co.uk> | ||
| 57 | Dan Waber <dwaber@logolalia.com> | 58 | Dan Waber <dwaber@logolalia.com> |
| 58 | and many others. | 59 | and many others. |
| 59 | 60 | ||
| @@ -392,6 +393,9 @@ is probably not very interesting for anyone else.) | |||
| 392 | THINGS TO DO | 393 | THINGS 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) |