[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] emacs-26 71192e0 01/10: Don't wait for visible frames to b
From: |
Noam Postavsky |
Subject: |
[Emacs-diffs] emacs-26 71192e0 01/10: Don't wait for visible frames to become visible |
Date: |
Sun, 3 Jun 2018 12:57:52 -0400 (EDT) |
branch: emacs-26
commit 71192e0b7eabadf2eb1fdd7f11cb391bbc34c560
Author: Noam Postavsky <address@hidden>
Commit: Noam Postavsky <address@hidden>
Don't wait for visible frames to become visible
For discussion, see thread starting at
https://lists.gnu.org/archive/html/emacs-devel/2018-03/msg00807.html.
* src/xterm.c (x_make_frame_visible): Check FRAME_VISIBLE_P before
calling x_wait_for_event.
(cherry picked from commits 2a192e21cf3b04b7f830b4971c1508c611e13a3c
and 00c1f771f2a51ffa675ec5a07ea330f2605cd302)
---
src/xterm.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/xterm.c b/src/xterm.c
index f6f2079..496effa 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -11548,7 +11548,8 @@ x_make_frame_visible (struct frame *f)
poll_for_input_1 ();
poll_suppress_count = old_poll_suppress_count;
#endif
- x_wait_for_event (f, MapNotify);
+ if (! FRAME_VISIBLE_P (f))
+ x_wait_for_event (f, MapNotify);
}
}
- [Emacs-diffs] emacs-26 updated (5fa73a7 -> 9a14b4d), Noam Postavsky, 2018/06/03
- [Emacs-diffs] emacs-26 71192e0 01/10: Don't wait for visible frames to become visible,
Noam Postavsky <=
- [Emacs-diffs] emacs-26 7460840 02/10: Fix CHECK_ALLOCATED_AND_LIVE abort during GC, Noam Postavsky, 2018/06/03
- [Emacs-diffs] emacs-26 0ac98cc 07/10: * lisp/epa.el (epa-decrypt-file): Apply epa-pinentry-mode (Bug#30363)., Noam Postavsky, 2018/06/03
- [Emacs-diffs] emacs-26 51ee8bc 04/10: Centralize Bug#30931 fix, Noam Postavsky, 2018/06/03
- [Emacs-diffs] emacs-26 3ba5fc2 08/10: esh-opt.el: Fix improper parsing of first argument (Bug#28323), Noam Postavsky, 2018/06/03
- [Emacs-diffs] emacs-26 9552485 06/10: Fix cl-print for circular sublists (Bug#31146), Noam Postavsky, 2018/06/03
- [Emacs-diffs] emacs-26 daa6023 03/10: Fix another case of freed markers in the undo-list (Bug#30931), Noam Postavsky, 2018/06/03
- [Emacs-diffs] emacs-26 ed962f2 09/10: Fix bug#30846, along with misc cleanups found along the way, Noam Postavsky, 2018/06/03
- [Emacs-diffs] emacs-26 4c6cdf6 05/10: Revert "Make mail-extract-address-components return the user name more", Noam Postavsky, 2018/06/03
- [Emacs-diffs] emacs-26 9a14b4d 10/10: ; Merge: backports from master, Noam Postavsky, 2018/06/03