changeset 9315:77eba75a44a0

(Fmarker_position): Don't use XFASTINT as an lvalue.
author Karl Heuer <kwzh@gnu.org>
date Tue, 04 Oct 1994 16:07:23 +0000
parents 2c681685646b
children 5f7cfbdef872
files src/marker.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/marker.c	Tue Oct 04 16:06:40 1994 +0000
+++ b/src/marker.c	Tue Oct 04 16:07:23 1994 +0000
@@ -65,7 +65,7 @@
       if (i < BUF_BEG (buf) || i > BUF_Z (buf))
 	abort ();
 
-      XFASTINT (pos) = i;
+      XSETFASTINT (pos, i);
       return pos;
     }
   return Qnil;