Mercurial > emacs
changeset 4080:8200d631e3f3
(verify_interval_modification): Use Qinsert_in_front_hooks and
Qinsert_behind_hooks instead of previous names.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 13 Jul 1993 21:08:45 +0000 |
parents | c1b16f1167d4 |
children | da352b92ca90 |
files | src/intervals.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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),