(Fcombine_after_change_execute): Fix Lisp_Object/integer confusion.
authorKarl Heuer <kwzh@gnu.org>
Thu, 10 Apr 1997 22:37:54 +0000 (22:37 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 10 Apr 1997 22:37:54 +0000 (22:37 +0000)
src/insdel.c

index d3c652b..aa431f5 100644 (file)
@@ -1010,7 +1010,8 @@ DEFUN ("combine-after-change-execute", Fcombine_after_change_execute,
   for (tail = combine_after_change_list; CONSP (tail);
        tail = XCONS (tail)->cdr)
     {
-      Lisp_Object elt, thisbeg, thisend, thischange;
+      Lisp_Object elt;
+      int thisbeg, thisend, thischange;
 
       /* Extract the info from the next element.  */
       elt = XCONS (tail)->car;