diff options
Diffstat (limited to 'src/undo.c')
| -rw-r--r-- | src/undo.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/undo.c b/src/undo.c index 65de0bd4e13..3e63c8af3f9 100644 --- a/src/undo.c +++ b/src/undo.c | |||
| @@ -128,7 +128,7 @@ record_marker_adjustments (ptrdiff_t from, ptrdiff_t to) | |||
| 128 | { | 128 | { |
| 129 | prepare_record (); | 129 | prepare_record (); |
| 130 | 130 | ||
| 131 | DO_MARKERS (current_buffer, m) | 131 | FOR_EACH_MARKER (current_buffer, m) |
| 132 | { | 132 | { |
| 133 | ptrdiff_t charpos = marker_vector_charpos (m); | 133 | ptrdiff_t charpos = marker_vector_charpos (m); |
| 134 | eassert (charpos <= Z); | 134 | eassert (charpos <= Z); |
| @@ -154,7 +154,6 @@ record_marker_adjustments (ptrdiff_t from, ptrdiff_t to) | |||
| 154 | } | 154 | } |
| 155 | } | 155 | } |
| 156 | } | 156 | } |
| 157 | END_DO_MARKERS; | ||
| 158 | } | 157 | } |
| 159 | 158 | ||
| 160 | /* Record that a deletion is about to take place, of the characters in | 159 | /* Record that a deletion is about to take place, of the characters in |