]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fmarker_position): Don't use XFASTINT as an lvalue.
authorKarl Heuer <kwzh@gnu.org>
Tue, 4 Oct 1994 16:07:23 +0000 (16:07 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 4 Oct 1994 16:07:23 +0000 (16:07 +0000)
src/marker.c

index 71e3d0e2b31603920925d72e1ed3eaec54464c60..6726f42c285532cb984ad755f422974e1dff8d4b 100644 (file)
@@ -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;