comparison 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
comparison
equal deleted inserted replaced
17372:30720c688961 17373:4f931fa4c0be
1008 /* Scan the various individual changes, 1008 /* Scan the various individual changes,
1009 accumulating the range info in BEG, END and CHANGE. */ 1009 accumulating the range info in BEG, END and CHANGE. */
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;
1017 if (! CONSP (elt)) 1018 if (! CONSP (elt))
1018 continue; 1019 continue;