(del_range): Update point before offset_intervals.
authorRichard M. Stallman <rms@gnu.org>
Mon, 1 Mar 1993 08:55:35 +0000 (08:55 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 1 Mar 1993 08:55:35 +0000 (08:55 +0000)
src/insdel.c

index 7f25a96..3534544 100644 (file)
@@ -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);