diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/intervals.c | 4 |
1 files 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) | |||
| 1475 | 1475 | ||
| 1476 | /* Run both insert hooks (just once if they're the same). */ | 1476 | /* Run both insert hooks (just once if they're the same). */ |
| 1477 | if (!NULL_INTERVAL_P (prev)) | 1477 | if (!NULL_INTERVAL_P (prev)) |
| 1478 | prev_mod_hooks = textget (prev->plist, Qinsert_after_hooks); | 1478 | prev_mod_hooks = textget (prev->plist, Qinsert_behind_hooks); |
| 1479 | if (!NULL_INTERVAL_P (i)) | 1479 | if (!NULL_INTERVAL_P (i)) |
| 1480 | mod_hooks = textget (i->plist, Qinsert_before_hooks); | 1480 | mod_hooks = textget (i->plist, Qinsert_in_front_hooks); |
| 1481 | GCPRO1 (mod_hooks); | 1481 | GCPRO1 (mod_hooks); |
| 1482 | if (! NILP (prev_mod_hooks)) | 1482 | if (! NILP (prev_mod_hooks)) |
| 1483 | call_mod_hooks (prev_mod_hooks, make_number (start), | 1483 | call_mod_hooks (prev_mod_hooks, make_number (start), |