(signal_after_change): Fix mixing of Lisp_Object and
authorAndreas Schwab <schwab@suse.de>
Tue, 14 Apr 1998 13:01:05 +0000 (13:01 +0000)
committerAndreas Schwab <schwab@suse.de>
Tue, 14 Apr 1998 13:01:05 +0000 (13:01 +0000)
int.

src/insdel.c

index 3b54364..39c76d0 100644 (file)
@@ -2360,7 +2360,8 @@ signal_after_change (charpos, lendel, lenins)
   /* 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