aboutsummaryrefslogtreecommitdiffstats
path: root/src/xselect.c
diff options
context:
space:
mode:
authorKim F. Storm2004-08-19 13:59:28 +0000
committerKim F. Storm2004-08-19 13:59:28 +0000
commitbb41f093dde33efca8a7d5baf6eb1c364ea684c4 (patch)
tree0db113834c43767ef2f213cbf6e5081b131aa054 /src/xselect.c
parentb89a415ab18b6ed14f70518d8bd336d1f3364c9c (diff)
downloademacs-bb41f093dde33efca8a7d5baf6eb1c364ea684c4.tar.gz
emacs-bb41f093dde33efca8a7d5baf6eb1c364ea684c4.zip
Adapt to new wait_reading_process_input args.
Diffstat (limited to 'src/xselect.c')
-rw-r--r--src/xselect.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/xselect.c b/src/xselect.c
index 7be238651a0..bf7b21cf323 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -1109,7 +1109,8 @@ wait_for_property_change (location)
1109 secs = x_selection_timeout / 1000; 1109 secs = x_selection_timeout / 1000;
1110 usecs = (x_selection_timeout % 1000) * 1000; 1110 usecs = (x_selection_timeout % 1000) * 1000;
1111 TRACE2 (" Waiting %d secs, %d usecs", secs, usecs); 1111 TRACE2 (" Waiting %d secs, %d usecs", secs, usecs);
1112 wait_reading_process_input (secs, usecs, property_change_reply, 0); 1112 wait_reading_process_input (secs, usecs, 0, 0,
1113 property_change_reply, NULL, 0);
1113 1114
1114 if (NILP (XCAR (property_change_reply))) 1115 if (NILP (XCAR (property_change_reply)))
1115 { 1116 {
@@ -1288,7 +1289,8 @@ x_get_foreign_selection (selection_symbol, target_type, time_stamp)
1288 secs = x_selection_timeout / 1000; 1289 secs = x_selection_timeout / 1000;
1289 usecs = (x_selection_timeout % 1000) * 1000; 1290 usecs = (x_selection_timeout % 1000) * 1000;
1290 TRACE1 (" Start waiting %d secs for SelectionNotify", secs); 1291 TRACE1 (" Start waiting %d secs for SelectionNotify", secs);
1291 wait_reading_process_input (secs, usecs, reading_selection_reply, 0); 1292 wait_reading_process_input (secs, usecs, 0, 0,
1293 reading_selection_reply, NULL, 0);
1292 TRACE1 (" Got event = %d", !NILP (XCAR (reading_selection_reply))); 1294 TRACE1 (" Got event = %d", !NILP (XCAR (reading_selection_reply)));
1293 1295
1294 BLOCK_INPUT; 1296 BLOCK_INPUT;