aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-07-13 21:08:45 +0000
committerRichard M. Stallman1993-07-13 21:08:45 +0000
commitf1ca9012384f6f4521c63ebddd59e73adae1787c (patch)
tree0cecd55a9b5504b09819dc072d6f03b8da77c1d6 /src
parentc2d8811cc666c444195af459c2fe7f96d16093e7 (diff)
downloademacs-f1ca9012384f6f4521c63ebddd59e73adae1787c.tar.gz
emacs-f1ca9012384f6f4521c63ebddd59e73adae1787c.zip
(verify_interval_modification): Use Qinsert_in_front_hooks and
Qinsert_behind_hooks instead of previous names.
Diffstat (limited to 'src')
-rw-r--r--src/intervals.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intervals.c b/src/intervals.c
index 8a77073278a..c21078019e2 100644
--- a/src/intervals.c
+++ b/src/intervals.c
@@ -1475,9 +1475,9 @@ verify_interval_modification (buf, start, end)
1475 1475
1476 /* Run both insert hooks (just once if they're the same). */ 1476 /* Run both insert hooks (just once if they're the same). */
1477 if (!NULL_INTERVAL_P (prev)) 1477 if (!NULL_INTERVAL_P (prev))
1478 prev_mod_hooks = textget (prev->plist, Qinsert_after_hooks); 1478 prev_mod_hooks = textget (prev->plist, Qinsert_behind_hooks);
1479 if (!NULL_INTERVAL_P (i)) 1479 if (!NULL_INTERVAL_P (i))
1480 mod_hooks = textget (i->plist, Qinsert_before_hooks); 1480 mod_hooks = textget (i->plist, Qinsert_in_front_hooks);
1481 GCPRO1 (mod_hooks); 1481 GCPRO1 (mod_hooks);
1482 if (! NILP (prev_mod_hooks)) 1482 if (! NILP (prev_mod_hooks))
1483 call_mod_hooks (prev_mod_hooks, make_number (start), 1483 call_mod_hooks (prev_mod_hooks, make_number (start),