diff src/editfns.c @ 68626:ee9f9dd4337d

(Fconstrain_to_field): Fix int/Lisp_Object mixup.
author Ken Raeburn <raeburn@raeburn.org>
date Sun, 05 Feb 2006 12:14:20 +0000
parents 0b6d0aad4517
children 3bd95f4f2941
line wrap: on
line diff
--- a/src/editfns.c	Sun Feb 05 06:11:41 2006 +0000
+++ b/src/editfns.c	Sun Feb 05 12:14:20 2006 +0000
@@ -719,7 +719,8 @@
 {
   /* If non-zero, then the original point, before re-positioning.  */
   int orig_point = 0;
-  int fwd, prev_old, prev_new;
+  int fwd;
+  Lisp_Object prev_old, prev_new;
   
   if (NILP (new_pos))
     /* Use the current point, and afterwards, set it.  */