aboutsummaryrefslogtreecommitdiffstats
path: root/src/marker.c
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1994-10-04 16:07:23 +0000
committerKarl Heuer <[email protected]>1994-10-04 16:07:23 +0000
commitc5802b21e410767644f21142da695a70cf76dff8 (patch)
tree8ac58b114c1065de4f96befb07c21528f9456b9f /src/marker.c
parenta4773b43feba75567f7e4f913be17386aeac69ab (diff)
(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 71e3d0e2b3..6726f42c28 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;