Mercurial > emacs
diff src/insdel.c @ 17373:4f931fa4c0be
(Fcombine_after_change_execute): Fix Lisp_Object/integer confusion.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Thu, 10 Apr 1997 22:37:54 +0000 |
parents | 02f6d66c3a4b |
children | 8f167ece7e39 |
line wrap: on
line diff
--- 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;