From: Richard M. Stallman Date: Tue, 12 Sep 1995 17:37:02 +0000 (+0000) Subject: (signal_after_change): Call report_interval_modification. X-Git-Tag: emacs-19.34~2834 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c5ca07864e26c10e538a810888f3c74dde1ebec3;p=emacs.git (signal_after_change): Call report_interval_modification. --- diff --git a/src/insdel.c b/src/insdel.c index cd46d0f4dcf..e6867647007 100644 --- a/src/insdel.c +++ b/src/insdel.c @@ -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); }