diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-03-01 08:55:35 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-03-01 08:55:35 +0000 |
commit | 16032db6875c2840f8b51f86ccb1658940795910 (patch) | |
tree | 6616a65ef0deaa4cf66bc50c64aac74b02501662 /src/insdel.c | |
parent | 75cf385a42a7eddf94597112b89997b57e8acf82 (diff) | |
download | emacs-16032db6875c2840f8b51f86ccb1658940795910.tar.gz |
(del_range): Update point before offset_intervals.
Diffstat (limited to 'src/insdel.c')
-rw-r--r-- | src/insdel.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/insdel.c b/src/insdel.c index 7f25a967d46..35345440c2a 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); |