aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/insdel.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/insdel.c b/src/insdel.c
index 7f25a967d4..35345440c2 100644
--- a/src/insdel.c
+++ b/src/insdel.c
@@ -444,9 +444,6 @@ del_range (from, to)
record_delete (from, numdel);
MODIFF++;
- /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
- offset_intervals (current_buffer, point, - numdel);
-
/* Relocate point as if it were a marker. */
if (from < point)
{
@@ -456,6 +453,9 @@ del_range (from, to)
SET_PT (point - numdel);
}
+ /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
+ offset_intervals (current_buffer, point, - numdel);
+
/* Relocate all markers pointing into the new, larger gap
to point at the end of the text before the gap. */
adjust_markers (to + GAP_SIZE, to + GAP_SIZE, - numdel - GAP_SIZE);