]> granicus.if.org Git - vim/commitdiff
patch 8.0.0421: diff mode wrong when adding line at end of buffer v8.0.0421
authorBram Moolenaar <Bram@vim.org>
Sun, 5 Mar 2017 17:03:04 +0000 (18:03 +0100)
committerBram Moolenaar <Bram@vim.org>
Sun, 5 Mar 2017 17:03:04 +0000 (18:03 +0100)
Problem:    Diff mode is displayed wrong when adding a line at the end of a
            buffer.
Solution:   Adjust marks in diff mode. (James McCoy, closes #1329)

src/misc1.c
src/ops.c
src/testdir/test_diffmode.vim
src/version.c

index fbb1081a507f782688278c447e17d1d6f141d285..dce912c40690adcad9e7dc8784a5f5fb60f0da0c 100644 (file)
@@ -1427,8 +1427,12 @@ open_line(
        /* Postpone calling changed_lines(), because it would mess up folding
         * with markers.
         * Skip mark_adjust when adding a line after the last one, there can't
-        * be marks there. */
-       if (curwin->w_cursor.lnum + 1 < curbuf->b_ml.ml_line_count)
+        * be marks there. But still needed in diff mode. */
+       if (curwin->w_cursor.lnum + 1 < curbuf->b_ml.ml_line_count
+#ifdef FEAT_DIFF
+               || curwin->w_p_diff
+#endif
+           )
            mark_adjust(curwin->w_cursor.lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
        did_append = TRUE;
     }
@@ -2863,8 +2867,12 @@ appended_lines(linenr_T lnum, long count)
 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. */
-    if (lnum + count < curbuf->b_ml.ml_line_count)
+     * 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);
 }
index d23b3077f53127ee7bd3b48ea1fb5b397d406ef8..757c1154977ec6ed871951cb120006d1b0f9e20d 100644 (file)
--- a/src/ops.c
+++ b/src/ops.c
@@ -3927,9 +3927,13 @@ error:
                    curbuf->b_op_start.lnum++;
            }
            /* Skip mark_adjust when adding lines after the last one, there
-            * can't be marks there. */
+            * can't be marks there. But still needed in diff mode. */
            if (curbuf->b_op_start.lnum + (y_type == MCHAR) - 1 + nr_lines
-                                                < curbuf->b_ml.ml_line_count)
+                                                < curbuf->b_ml.ml_line_count
+#ifdef FEAT_DIFF
+                                                || curwin->w_p_diff
+#endif
+                                                )
                mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR),
                                             (linenr_T)MAXLNUM, nr_lines, 0L);
 
@@ -6311,7 +6315,7 @@ write_viminfo_registers(FILE *fp)
 
 /*
  * Routine to export any final X selection we had to the environment
- * so that the text is still available after vim has exited. X selections
+ * so that the text is still available after Vim has exited. X selections
  * only exist while the owning application exists, so we write to the
  * permanent (while X runs) store CUT_BUFFER0.
  * Dump the CLIPBOARD selection if we own it (it's logically the more
index c3d4be9cf9cb09ac539964cb0eb4a985a99f0fce..33617c9cbe19ec4bd3db9f68db3e0aa86d0731a7 100644 (file)
@@ -347,3 +347,23 @@ func Test_diff_nomodifiable()
   call assert_fails('norm do', 'E21:')
   %bwipe!
 endfunc
+
+func Test_diff_lastline()
+  enew!
+  only!
+  call setline(1, ['This is a ', 'line with five ', 'rows'])
+  diffthis
+  botright vert new
+  call setline(1, ['This is', 'a line with ', 'four rows'])
+  diffthis
+  1
+  call feedkeys("Je a\<CR>", 'tx')
+  call feedkeys("Je a\<CR>", 'tx')
+  let w1lines = winline()
+  wincmd w
+  $
+  let w2lines = winline()
+  call assert_equal(w2lines, w1lines)
+  bwipe!
+  bwipe!
+endfunc
index f3a0b6c906c17eecd8e1e9ea07647335e67dc30b..c55ba191c71e3e3745955b9aa6f2a16916c451a8 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    421,
 /**/
     420,
 /**/