Mercurial > emacs
changeset 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 | 30720c688961 |
children | 7cba1521d0ca |
files | src/insdel.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
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;