summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1997-04-10 22:37:54 +0000
committerKarl Heuer <kwzh@gnu.org>1997-04-10 22:37:54 +0000
commit44b2b3a5ee1c20b9e4b19fedbbd638c8ecced716 (patch)
tree043587f49c14fbe202efd2b4f7808ed8cfd5f81b
parentc4ab699163c179abcedf070cdc5ab02918c57581 (diff)
downloademacs-44b2b3a5ee1c20b9e4b19fedbbd638c8ecced716.tar.gz
(Fcombine_after_change_execute): Fix Lisp_Object/integer confusion.
-rw-r--r--src/insdel.c3
1 files changed, 2 insertions, 1 deletions
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;