]> git.eshelyaron.com Git - emacs.git/commitdiff
(verify_interval_modification): Use Qinsert_in_front_hooks and
authorRichard M. Stallman <rms@gnu.org>
Tue, 13 Jul 1993 21:08:45 +0000 (21:08 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 13 Jul 1993 21:08:45 +0000 (21:08 +0000)
Qinsert_behind_hooks instead of previous names.

src/intervals.c

index 8a77073278a9265014e598200503938734e8e2f3..c21078019e217733bf452c9b7c45c19a6e9a47f1 100644 (file)
@@ -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),