diff options
| author | Karl Heuer | 1994-10-04 12:36:03 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-10-04 12:36:03 +0000 |
| commit | 90851bbe34a2fa089bcf6f3b7620c08acb3bcf8c (patch) | |
| tree | 944a827bccf19897d1374e302d190cce3821a24b /src | |
| parent | 191ed777ea83e4e3bef03fa794d13e343a45c5ee (diff) | |
| download | emacs-90851bbe34a2fa089bcf6f3b7620c08acb3bcf8c.tar.gz emacs-90851bbe34a2fa089bcf6f3b7620c08acb3bcf8c.zip | |
(x_clear_frame_selections, wait_for_property_change): Use new accessor macros
instead of calling XSET directly.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xselect.c | 4 |
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) | |||
| 767 | Lisp_Object frame; | 767 | Lisp_Object frame; |
| 768 | Lisp_Object rest; | 768 | Lisp_Object rest; |
| 769 | 769 | ||
| 770 | XSET (frame, Lisp_Frame, f); | 770 | XSETFRAME (frame, f); |
| 771 | 771 | ||
| 772 | /* Otherwise, we're really honest and truly being told to drop it. | 772 | /* Otherwise, we're really honest and truly being told to drop it. |
| 773 | Don't use Fdelq as that may QUIT;. */ | 773 | Don't use Fdelq as that may QUIT;. */ |
| @@ -897,7 +897,7 @@ wait_for_property_change (location) | |||
| 897 | int count = specpdl_ptr - specpdl; | 897 | int count = specpdl_ptr - specpdl; |
| 898 | Lisp_Object tem; | 898 | Lisp_Object tem; |
| 899 | 899 | ||
| 900 | XSET (tem, Lisp_Cons, location); | 900 | XSETCONS (tem, location); |
| 901 | 901 | ||
| 902 | /* Make sure to do unexpect_property_change if we quit or err. */ | 902 | /* Make sure to do unexpect_property_change if we quit or err. */ |
| 903 | record_unwind_protect (wait_for_property_change_unwind, tem); | 903 | record_unwind_protect (wait_for_property_change_unwind, tem); |