From f1ca9012384f6f4521c63ebddd59e73adae1787c Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 13 Jul 1993 21:08:45 +0000 Subject: [PATCH] (verify_interval_modification): Use Qinsert_in_front_hooks and Qinsert_behind_hooks instead of previous names. --- src/intervals.c | 4 ++-- 1 file 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) /* Run both insert hooks (just once if they're the same). */ if (!NULL_INTERVAL_P (prev)) - prev_mod_hooks = textget (prev->plist, Qinsert_after_hooks); + prev_mod_hooks = textget (prev->plist, Qinsert_behind_hooks); if (!NULL_INTERVAL_P (i)) - mod_hooks = textget (i->plist, Qinsert_before_hooks); + mod_hooks = textget (i->plist, Qinsert_in_front_hooks); GCPRO1 (mod_hooks); if (! NILP (prev_mod_hooks)) call_mod_hooks (prev_mod_hooks, make_number (start), -- 2.39.5