move appended_lines_mark

This commit is contained in:
Daniel Hahler
2019-06-09 16:00:52 +02:00
parent d9f2d53239
commit 83d35e62f2
2 changed files with 7 additions and 24 deletions

View File

@@ -341,18 +341,14 @@ void appended_lines(linenr_T lnum, long count)
/*
* Like appended_lines(), but adjust marks first.
*/
void
appended_lines_mark(linenr_T lnum, long count)
void appended_lines_mark(linenr_T lnum, long count)
{
// Skip mark_adjust when adding a line after the last one, there can't
// be marks there. But it's still needed in diff mode.
if (lnum + count < curbuf->b_ml.ml_line_count
#ifdef FEAT_DIFF
|| curwin->w_p_diff
#endif
)
mark_adjust(lnum + 1, (linenr_T)MAXLNUM, count, 0L);
changed_lines(lnum + 1, 0, lnum + 1, count);
// Skip mark_adjust when adding a line after the last one, there can't
// be marks there. But it's still needed in diff mode.
if (lnum + count < curbuf->b_ml.ml_line_count || curwin->w_p_diff) {
mark_adjust(lnum + 1, (linenr_T)MAXLNUM, count, 0L, false);
}
changed_lines(lnum + 1, 0, lnum + 1, count, true);
}
/*