# HG changeset patch # User Karl Heuer # Date 860711874 0 # Node ID 4f931fa4c0be2bf188adce411b19dac6b9d07cd4 # Parent 30720c68896105603e87da83b615f34ae67657b1 (Fcombine_after_change_execute): Fix Lisp_Object/integer confusion. diff -r 30720c688961 -r 4f931fa4c0be src/insdel.c --- a/src/insdel.c Thu Apr 10 22:32:00 1997 +0000 +++ b/src/insdel.c Thu Apr 10 22:37:54 1997 +0000 @@ -1010,7 +1010,8 @@ 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;