Mercurial > emacs
diff src/xselect.c @ 56717:f95a8f5985be
Adapt to new wait_reading_process_input args.
| author | Kim F. Storm <storm@cua.dk> |
|---|---|
| date | Thu, 19 Aug 2004 13:59:28 +0000 |
| parents | 5407da499273 |
| children | e6e0caa7ec87 |
line wrap: on
line diff
--- a/src/xselect.c Thu Aug 19 13:57:17 2004 +0000 +++ b/src/xselect.c Thu Aug 19 13:59:28 2004 +0000 @@ -1109,7 +1109,8 @@ secs = x_selection_timeout / 1000; usecs = (x_selection_timeout % 1000) * 1000; TRACE2 (" Waiting %d secs, %d usecs", secs, usecs); - wait_reading_process_input (secs, usecs, property_change_reply, 0); + wait_reading_process_input (secs, usecs, 0, 0, + property_change_reply, NULL, 0); if (NILP (XCAR (property_change_reply))) { @@ -1288,7 +1289,8 @@ secs = x_selection_timeout / 1000; usecs = (x_selection_timeout % 1000) * 1000; TRACE1 (" Start waiting %d secs for SelectionNotify", secs); - wait_reading_process_input (secs, usecs, reading_selection_reply, 0); + wait_reading_process_input (secs, usecs, 0, 0, + reading_selection_reply, NULL, 0); TRACE1 (" Got event = %d", !NILP (XCAR (reading_selection_reply))); BLOCK_INPUT;
