# HG changeset patch # User Andreas Schwab # Date 892558865 0 # Node ID fff9425b9230370a7c56f17814d86c1113e30d62 # Parent 0ed9ea6eeef33413256a6ae47a77682550cc42d9 (signal_after_change): Fix mixing of Lisp_Object and int. diff -r 0ed9ea6eeef3 -r fff9425b9230 src/insdel.c --- a/src/insdel.c Tue Apr 14 13:00:27 1998 +0000 +++ b/src/insdel.c Tue Apr 14 13:01:05 1998 +0000 @@ -2360,7 +2360,8 @@ /* After an insertion, call the text properties insert-behind-hooks or insert-in-front-hooks. */ if (lendel == 0) - report_interval_modification (charpos, charpos + lenins); + report_interval_modification (make_number (charpos), + make_number (charpos + lenins)); } Lisp_Object