summaryrefslogtreecommitdiff
path: root/src/xselect.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1994-10-04 12:36:03 +0000
committerKarl Heuer <kwzh@gnu.org>1994-10-04 12:36:03 +0000
commit90851bbe34a2fa089bcf6f3b7620c08acb3bcf8c (patch)
tree944a827bccf19897d1374e302d190cce3821a24b /src/xselect.c
parent191ed777ea83e4e3bef03fa794d13e343a45c5ee (diff)
downloademacs-90851bbe34a2fa089bcf6f3b7620c08acb3bcf8c.tar.gz
(x_clear_frame_selections, wait_for_property_change): Use new accessor macros
instead of calling XSET directly.
Diffstat (limited to 'src/xselect.c')
-rw-r--r--src/xselect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xselect.c b/src/xselect.c
index bf2b5c76a93..babd59a70ab 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -767,7 +767,7 @@ x_clear_frame_selections (f)
Lisp_Object frame;
Lisp_Object rest;
- XSET (frame, Lisp_Frame, f);
+ XSETFRAME (frame, f);
/* Otherwise, we're really honest and truly being told to drop it.
Don't use Fdelq as that may QUIT;. */
@@ -897,7 +897,7 @@ wait_for_property_change (location)
int count = specpdl_ptr - specpdl;
Lisp_Object tem;
- XSET (tem, Lisp_Cons, location);
+ XSETCONS (tem, location);
/* Make sure to do unexpect_property_change if we quit or err. */
record_unwind_protect (wait_for_property_change_unwind, tem);