summaryrefslogtreecommitdiff
path: root/src/xselect.c.old
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-07-14 16:25:43 +0000
committerJim Blandy <jimb@redhat.com>1992-07-14 16:25:43 +0000
commitf676886a9ea3e4f2cb9275a658c69c899056a500 (patch)
tree7a023de027febdad462cf452f6153cda6af17339 /src/xselect.c.old
parent7708e9bd10bbcbb024b9e72b934eae5cbb252872 (diff)
downloademacs-f676886a9ea3e4f2cb9275a658c69c899056a500.tar.gz
*** empty log message ***
Diffstat (limited to 'src/xselect.c.old')
-rw-r--r--src/xselect.c.old8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xselect.c.old b/src/xselect.c.old
index 8c818b90746..aa415afc663 100644
--- a/src/xselect.c.old
+++ b/src/xselect.c.old
@@ -21,7 +21,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "lisp.h"
#include "xterm.h"
#include "buffer.h"
-#include "screen.h"
+#include "frame.h"
#ifdef HAVE_X11
@@ -127,7 +127,7 @@ own_selection (selection_type, time)
|| ((EQ (selection_type, Qclipboard)) && !NILP (Vx_clipboard_value)))
return 1;
- selecting_window = selected_screen->display.x->window_desc;
+ selecting_window = selected_frame->display.x->window_desc;
XSetSelectionOwner (x_current_display, selection_type,
selecting_window, time);
owner_window = XGetSelectionOwner (x_current_display, selection_type);
@@ -212,7 +212,7 @@ x_disown_selection (old_owner, selection, changed_owner_time)
Atom selection;
Time changed_owner_time;
{
- struct screen *s = x_window_to_screen (old_owner);
+ struct frame *s = x_window_to_frame (old_owner);
if (s) /* We are the owner */
{
@@ -531,7 +531,7 @@ get_selection_value (type)
BLOCK_INPUT;
requestor_time = last_event_timestamp;
- requestor_window = selected_screen->display.x->window_desc;
+ requestor_window = selected_frame->display.x->window_desc;
XConvertSelection (x_current_display, type, XA_STRING,
Xatom_emacs_selection, requestor_window, requestor_time);
XIfEvent (x_current_display,