aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1997-04-10 22:37:54 +0000
committerKarl Heuer1997-04-10 22:37:54 +0000
commite688a0806bb7c1b50365e86bc4594baa24fe41f6 (patch)
tree4c03b5e5b3f2fe66038230106ebb645f5f2746e2 /src
parent6c070502b6b90092eeadaa961363e8bb05b8ea1f (diff)
downloademacs-e688a0806bb7c1b50365e86bc4594baa24fe41f6.tar.gz
emacs-e688a0806bb7c1b50365e86bc4594baa24fe41f6.zip
(Fcombine_after_change_execute): Fix Lisp_Object/integer confusion.
Diffstat (limited to 'src')
-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,
1010 for (tail = combine_after_change_list; CONSP (tail); 1010 for (tail = combine_after_change_list; CONSP (tail);
1011 tail = XCONS (tail)->cdr) 1011 tail = XCONS (tail)->cdr)
1012 { 1012 {
1013 Lisp_Object elt, thisbeg, thisend, thischange; 1013 Lisp_Object elt;
1014 int thisbeg, thisend, thischange;
1014 1015
1015 /* Extract the info from the next element. */ 1016 /* Extract the info from the next element. */
1016 elt = XCONS (tail)->car; 1017 elt = XCONS (tail)->car;