aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-10-04 12:08:52 +0000
committerKarl Heuer1994-10-04 12:08:52 +0000
commitf8f645a1c257f1d5829d464b7e8b76d5901a0ae9 (patch)
tree3309efb910e03b68daafb914c6410e21def4e3a6 /src
parent2d80a27a7e891ec4858641f7a0f190208b703d44 (diff)
downloademacs-f8f645a1c257f1d5829d464b7e8b76d5901a0ae9.tar.gz
emacs-f8f645a1c257f1d5829d464b7e8b76d5901a0ae9.zip
(Fcompute_motion): Use new accessor macros instead of calling XSET directly.
Diffstat (limited to 'src')
-rw-r--r--src/indent.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/indent.c b/src/indent.c
index 7209c7ce0b3..e9b9659d536 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -698,9 +698,9 @@ DEFUN ("compute-motion", Fcompute_motion, Scompute_motion, 7, 7, 0,
698 XWINDOW (window)); 698 XWINDOW (window));
699 699
700 XFASTINT (bufpos) = pos->bufpos; 700 XFASTINT (bufpos) = pos->bufpos;
701 XSET (hpos, Lisp_Int, pos->hpos); 701 XSETINT (hpos, pos->hpos);
702 XSET (vpos, Lisp_Int, pos->vpos); 702 XSETINT (vpos, pos->vpos);
703 XSET (prevhpos, Lisp_Int, pos->prevhpos); 703 XSETINT (prevhpos, pos->prevhpos);
704 704
705 return Fcons (bufpos, 705 return Fcons (bufpos,
706 Fcons (hpos, 706 Fcons (hpos,