]> granicus.if.org Git - vim/commitdiff
updated for version 7.2-064 v7.2.064
authorBram Moolenaar <Bram@vim.org>
Wed, 3 Dec 2008 12:38:36 +0000 (12:38 +0000)
committerBram Moolenaar <Bram@vim.org>
Wed, 3 Dec 2008 12:38:36 +0000 (12:38 +0000)
src/ops.c
src/version.c

index d79d75d52bfc15609a620d5a7a69e622ac67c492..557985c38ad1a7eaaf8849d5fd102727ecc916a0 100644 (file)
--- a/src/ops.c
+++ b/src/ops.c
@@ -2209,12 +2209,15 @@ op_tilde(oap)
     {
        for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
        {
+           int one_change;
+
            block_prep(oap, &bd, pos.lnum, FALSE);
            pos.col = bd.textcol;
-           did_change = swapchars(oap->op_type, &pos, bd.textlen);
+           one_change = swapchars(oap->op_type, &pos, bd.textlen);
+           did_change |= one_change;
 
 # ifdef FEAT_NETBEANS_INTG
-           if (usingNetbeans && did_change)
+           if (usingNetbeans && one_change)
            {
                char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
 
index a09193956b6807b22ef37a8f4b2385d4040249d7..d50b80d974f6e6c62bd6ad3fab619ee56669e26a 100644 (file)
@@ -676,6 +676,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    64,
 /**/
     63,
 /**/