summaryrefslogtreecommitdiff
path: root/src/indent.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1994-10-04 12:08:52 +0000
committerKarl Heuer <kwzh@gnu.org>1994-10-04 12:08:52 +0000
commit70d2d38bb0c5003e23f05a33d0fd2fd003070eaa (patch)
tree2da62db08f0cacf1b8ecb51f453a901f240b4f63 /src/indent.c
parent6e94ba8840b02d506cdb92f676187962afee0b00 (diff)
downloademacs-70d2d38bb0c5003e23f05a33d0fd2fd003070eaa.tar.gz
(Fcompute_motion): Use new accessor macros instead of calling XSET directly.
Diffstat (limited to 'src/indent.c')
-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,
XWINDOW (window));
XFASTINT (bufpos) = pos->bufpos;
- XSET (hpos, Lisp_Int, pos->hpos);
- XSET (vpos, Lisp_Int, pos->vpos);
- XSET (prevhpos, Lisp_Int, pos->prevhpos);
+ XSETINT (hpos, pos->hpos);
+ XSETINT (vpos, pos->vpos);
+ XSETINT (prevhpos, pos->prevhpos);
return Fcons (bufpos,
Fcons (hpos,