From: Karl Heuer Date: Thu, 10 Apr 1997 22:37:54 +0000 (+0000) Subject: (Fcombine_after_change_execute): Fix Lisp_Object/integer confusion. X-Git-Tag: emacs-20.1~2572 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e688a0806bb7c1b50365e86bc4594baa24fe41f6;p=emacs.git (Fcombine_after_change_execute): Fix Lisp_Object/integer confusion. --- diff --git a/src/insdel.c b/src/insdel.c index d3c652bce53..aa431f58837 100644 --- a/src/insdel.c +++ b/src/insdel.c @@ -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;