Mercurial > emacs
changeset 9286:2accc8da0793
(x_clear_frame_selections, wait_for_property_change): Use new accessor macros
instead of calling XSET directly.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 04 Oct 1994 12:36:03 +0000 |
parents | 75f1c0d90b3d |
children | 781ada39b15c |
files | src/xselect.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xselect.c Tue Oct 04 12:33:33 1994 +0000 +++ b/src/xselect.c Tue Oct 04 12:36:03 1994 +0000 @@ -767,7 +767,7 @@ 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 @@ 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);