aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-09-12 17:37:02 +0000
committerRichard M. Stallman1995-09-12 17:37:02 +0000
commitc5ca07864e26c10e538a810888f3c74dde1ebec3 (patch)
treefdfa0334ea3fb49d2f4f4741b8fcd5395f8effd5 /src
parentc59b5089765fbe387b3d30014c4aefa64952fdc9 (diff)
downloademacs-c5ca07864e26c10e538a810888f3c74dde1ebec3.tar.gz
emacs-c5ca07864e26c10e538a810888f3c74dde1ebec3.zip
(signal_after_change): Call report_interval_modification.
Diffstat (limited to 'src')
-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)
875 1, 875 1,
876 make_number (pos), make_number (pos + lenins), 876 make_number (pos), make_number (pos + lenins),
877 make_number (lendel)); 877 make_number (lendel));
878
879 /* After an insertion, call the text properties
880 insert-behind-hooks or insert-in-front-hooks. */
881 if (lendel == 0)
882 report_interval_modification (pos, pos + lenins);
878} 883}