diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-10-04 16:07:23 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-10-04 16:07:23 +0000 |
commit | c5802b21e410767644f21142da695a70cf76dff8 (patch) | |
tree | 8ac58b114c1065de4f96befb07c21528f9456b9f /src/marker.c | |
parent | a4773b43feba75567f7e4f913be17386aeac69ab (diff) | |
download | emacs-c5802b21e410767644f21142da695a70cf76dff8.tar.gz emacs-c5802b21e410767644f21142da695a70cf76dff8.tar.bz2 emacs-c5802b21e410767644f21142da695a70cf76dff8.zip |
(Fmarker_position): Don't use XFASTINT as an lvalue.
Diffstat (limited to 'src/marker.c')
-rw-r--r-- | src/marker.c | 2 |
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; |