aboutsummaryrefslogtreecommitdiffstats
path: root/src/insdel.c
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1993-12-23 01:19:25 +0000
committerRichard M. Stallman <[email protected]>1993-12-23 01:19:25 +0000
commit83010cd6e25718ff01ff1c6b53e39a0dec21a3b2 (patch)
tree57f1c6473a4c6fe5656153e0302165a434ea2444 /src/insdel.c
parent271c7b7cc904250f5b65af1a1a12c9611ac81331 (diff)
(del_range): Second argument in call to
offset_intervals is 'from', not 'point'. (modify_region): Call record_first_change if necessary. (insert_from_string): Pass LENGTH arg to graft_intervals_into_buffer.
Diffstat (limited to 'src/insdel.c')
-rw-r--r--src/insdel.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/insdel.c b/src/insdel.c
index 711e272da5..2a84b4d533 100644
--- a/src/insdel.c
+++ b/src/insdel.c
@@ -456,7 +456,7 @@ del_range (from, to)
}
/* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
- offset_intervals (current_buffer, point, - numdel);
+ offset_intervals (current_buffer, from, - numdel);
/* Relocate all markers pointing into the new, larger gap
to point at the end of the text before the gap. */
@@ -495,6 +495,9 @@ modify_region (buffer, start, end)
if (Z - end < end_unchanged
|| unchanged_modified == MODIFF)
end_unchanged = Z - end;
+
+ if (MODIFF <= current_buffer->save_modified)
+ record_first_change ();
MODIFF++;
if (buffer != old_buffer)