diff src/xselect.c @ 56729:e6e0caa7ec87

Rename wait_reading_process_input to wait_reading_process_output.
author Kim F. Storm <storm@cua.dk>
date Fri, 20 Aug 2004 10:34:12 +0000
parents f95a8f5985be
children d303ac34c1a0 22658e29bd48 d8411455de48
line wrap: on
line diff
--- a/src/xselect.c	Fri Aug 20 10:33:25 2004 +0000
+++ b/src/xselect.c	Fri Aug 20 10:34:12 2004 +0000
@@ -1109,8 +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, 0, 0,
-				  property_change_reply, NULL, 0);
+      wait_reading_process_output (secs, usecs, 0, 0,
+				   property_change_reply, NULL, 0);
 
       if (NILP (XCAR (property_change_reply)))
 	{
@@ -1289,8 +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, 0, 0,
-			      reading_selection_reply, NULL, 0);
+  wait_reading_process_output (secs, usecs, 0, 0,
+			       reading_selection_reply, NULL, 0);
   TRACE1 ("  Got event = %d", !NILP (XCAR (reading_selection_reply)));
 
   BLOCK_INPUT;