summaryrefslogtreecommitdiff
path: root/src/insdel.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-09-12 17:37:02 +0000
committerRichard M. Stallman <rms@gnu.org>1995-09-12 17:37:02 +0000
commit7b1a0b64c9227e43d036adcbfaf8772bb50253b4 (patch)
treeda54ce7812a6c99b5560d97ad7a3d94ffe93403c /src/insdel.c
parent83951265b72dfbd6060cee0b46efcfccf9dead1a (diff)
downloademacs-7b1a0b64c9227e43d036adcbfaf8772bb50253b4.tar.gz
(signal_after_change): Call report_interval_modification.
Diffstat (limited to 'src/insdel.c')
-rw-r--r--src/insdel.c5
1 files changed, 5 insertions, 0 deletions
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);
}