diff options
author | Kim F. Storm <storm@cua.dk> | 2004-08-20 10:34:12 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2004-08-20 10:34:12 +0000 |
commit | d64b707cb1e268b4c77a51f064d7e3fd95e3df85 (patch) | |
tree | 074754ef3582d7eb255a228a184da4fe5a3fbb9d /src/xselect.c | |
parent | 214d60691b6ecc0c3cf469f70ceab6709c773954 (diff) | |
download | emacs-d64b707cb1e268b4c77a51f064d7e3fd95e3df85.tar.gz emacs-d64b707cb1e268b4c77a51f064d7e3fd95e3df85.tar.bz2 emacs-d64b707cb1e268b4c77a51f064d7e3fd95e3df85.zip |
Rename wait_reading_process_input to wait_reading_process_output.
Diffstat (limited to 'src/xselect.c')
-rw-r--r-- | src/xselect.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xselect.c b/src/xselect.c index bf7b21cf323..5de1beb9ac4 100644 --- a/src/xselect.c +++ b/src/xselect.c @@ -1109,8 +1109,8 @@ wait_for_property_change (location) 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 @@ x_get_foreign_selection (selection_symbol, target_type, time_stamp) 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; |