diff src/editfns.c @ 23577:36cccf1ba0a9

(Fchar_after): Fix type clashes.
author Andreas Schwab <schwab@suse.de>
date Fri, 30 Oct 1998 10:13:41 +0000
parents 077655e1e014
children 8dcbcad4482c
line wrap: on
line diff
--- a/src/editfns.c	Fri Oct 30 10:13:36 1998 +0000
+++ b/src/editfns.c	Fri Oct 30 10:13:41 1998 +0000
@@ -603,7 +603,7 @@
   if (NILP (pos))
     {
       pos_byte = PT_BYTE;
-      pos = PT;
+      XSETFASTINT (pos, PT);
     }
 
   if (MARKERP (pos))
@@ -637,7 +637,7 @@
   if (NILP (pos))
     {
       pos_byte = PT_BYTE;
-      pos = PT;
+      XSETFASTINT (pos, PT);
     }
 
   if (MARKERP (pos))