mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-27 07:37:33 +00:00
* nsterm.m (ns_read_socket): Return early if there is a modal window.
Fixes: debbugs:12043
This commit is contained in:
parent
67ada220af
commit
57ec30344f
@ -1,3 +1,8 @@
|
||||
2012-07-25 Jan Djärv <jan.h.d@swipnet.se>
|
||||
|
||||
* nsterm.m (ns_read_socket): Return early if there is a modal
|
||||
window (Bug#12043).
|
||||
|
||||
2012-07-25 Martin Rudalics <rudalics@gmx.at>
|
||||
|
||||
* frame.c (Fredirect_frame_focus): In doc-string don't mention
|
||||
|
@ -3411,6 +3411,9 @@ overwriting cursor (usually when cursor on a tab) */
|
||||
|
||||
/* NSTRACE (ns_read_socket); */
|
||||
|
||||
if ([NSApp modalWindow] != nil)
|
||||
return -1;
|
||||
|
||||
if (interrupt_input_blocked)
|
||||
{
|
||||
interrupt_input_pending = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user