summaryrefslogtreecommitdiff
path: root/src/marker.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1994-10-04 16:07:23 +0000
committerKarl Heuer <kwzh@gnu.org>1994-10-04 16:07:23 +0000
commit7effb43fe672a31c41a74f3e3396f39423f04632 (patch)
treef6167832df81ae297d164439adf828a95762311a /src/marker.c
parentaf47c6db92f7d0021c4f4f25a225437bed969916 (diff)
downloademacs-7effb43fe672a31c41a74f3e3396f39423f04632.tar.gz
(Fmarker_position): Don't use XFASTINT as an lvalue.
Diffstat (limited to 'src/marker.c')
-rw-r--r--src/marker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/marker.c b/src/marker.c
index 71e3d0e2b31..6726f42c285 100644
--- a/src/marker.c
+++ b/src/marker.c
@@ -65,7 +65,7 @@ DEFUN ("marker-position", Fmarker_position, Smarker_position, 1, 1, 0,
if (i < BUF_BEG (buf) || i > BUF_Z (buf))
abort ();
- XFASTINT (pos) = i;
+ XSETFASTINT (pos, i);
return pos;
}
return Qnil;