# HG changeset patch # User Richard M. Stallman # Date 742597725 0 # Node ID 8200d631e3f332d478d733e8b9ffa1dd82561e55 # Parent c1b16f1167d4c25fe6bb032a7393320ab2a6f15d (verify_interval_modification): Use Qinsert_in_front_hooks and Qinsert_behind_hooks instead of previous names. diff -r c1b16f1167d4 -r 8200d631e3f3 src/intervals.c --- a/src/intervals.c Tue Jul 13 21:07:02 1993 +0000 +++ b/src/intervals.c Tue Jul 13 21:08:45 1993 +0000 @@ -1475,9 +1475,9 @@ /* 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),