From: Richard M. Stallman Date: Tue, 13 Jul 1993 21:08:45 +0000 (+0000) Subject: (verify_interval_modification): Use Qinsert_in_front_hooks and X-Git-Tag: emacs-19.34~11771 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f1ca9012384f6f4521c63ebddd59e73adae1787c;p=emacs.git (verify_interval_modification): Use Qinsert_in_front_hooks and Qinsert_behind_hooks instead of previous names. --- 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),