(signal_after_change): Call report_interval_modification.
authorRichard M. Stallman <rms@gnu.org>
Tue, 12 Sep 1995 17:37:02 +0000 (17:37 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 12 Sep 1995 17:37:02 +0000 (17:37 +0000)
src/insdel.c

index cd46d0f..e686764 100644 (file)
@@ -875,4 +875,9 @@ signal_after_change (pos, lendel, lenins)
                                 1,
                                 make_number (pos), make_number (pos + lenins),
                                 make_number (lendel));
+
+  /* After an insertion, call the text properties
+     insert-behind-hooks or insert-in-front-hooks.  */
+  if (lendel == 0)
+    report_interval_modification (pos, pos + lenins);
 }