* nsterm.m (ns_select): Send SIGIO only to self, not to process group.

This commit is contained in:
Paul Eggert 2012-11-17 18:29:09 -08:00
parent 6c9c9b0b70
commit 552a1590c6
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2012-11-18 Paul Eggert <eggert@cs.ucla.edu>
* nsterm.m (ns_select): Send SIGIO only to self, not to process group.
2012-11-18 Eli Zaretskii <eliz@gnu.org>
* w32select.c: Include w32common.h before w32term.h, so that

View file

@ -3462,10 +3462,10 @@ overwriting cursor (usually when cursor on a tab) */
/* NSTRACE (ns_select); */
if (hold_event_q.nr > 0)
if (hold_event_q.nr > 0)
{
/* We already have events pending. */
kill (0, SIGIO);
raise (SIGIO);
errno = EINTR;
return -1;
}