]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.800 v7.3.800
authorBram Moolenaar <Bram@vim.org>
Wed, 6 Feb 2013 11:33:21 +0000 (12:33 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 6 Feb 2013 11:33:21 +0000 (12:33 +0100)
Problem:    The " mark is not adjusted when inserting lines. (Roland Eggner)
Solution:   Adjust the line number. (Christian Brabandt)

src/mark.c
src/version.c

index 540f70b97bb8bd2f94406c9b5e0c124db7154ed9..f31f53b52791947a8f0fc6ad203a6909f2c891c5 100644 (file)
@@ -1047,6 +1047,7 @@ mark_adjust(line1, line2, amount, amount_after)
 #ifdef FEAT_WINDOWS
     tabpage_T  *tab;
 #endif
+    static pos_T initpos = INIT_POS_T(1, 0, 0);
 
     if (line2 < line1 && amount_after == 0L)       /* nothing to do */
        return;
@@ -1072,6 +1073,11 @@ mark_adjust(line1, line2, amount, amount_after)
        /* last change position */
        one_adjust(&(curbuf->b_last_change.lnum));
 
+       /* last cursor position, if it was set */
+       if (!equalpos(curbuf->b_last_cursor, initpos))
+           one_adjust(&(curbuf->b_last_cursor.lnum));
+
+
 #ifdef FEAT_JUMPLIST
        /* list of change positions */
        for (i = 0; i < curbuf->b_changelistlen; ++i)
index 7689b5601304bd76e98e7281a2c89109246658b6..af8210a9df640fb20a4916ab2b5fd92b668bd40f 100644 (file)
@@ -725,6 +725,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    800,
 /**/
     799,
 /**/