]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.1190 v7.3.1190
authorBram Moolenaar <Bram@vim.org>
Fri, 14 Jun 2013 17:15:58 +0000 (19:15 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 14 Jun 2013 17:15:58 +0000 (19:15 +0200)
Problem:    Compiler warning for parentheses. (Christian Wellenbrock)
Solution:   Change #ifdef.

src/ex_docmd.c
src/version.c

index fe711d79d30441eb5ac996cb8081bc269c2069ab..6b2cdb38e3570789448741f8c15b5e84b3c50260 100644 (file)
@@ -8568,11 +8568,13 @@ ex_operators(eap)
            break;
 
        default:    /* CMD_rshift or CMD_lshift */
-           if ((eap->cmdidx == CMD_rshift)
+           if (
 #ifdef FEAT_RIGHTLEFT
-                                   ^ curwin->w_p_rl
+               (eap->cmdidx == CMD_rshift) ^ curwin->w_p_rl
+#else
+               eap->cmdidx == CMD_rshift
 #endif
-                                                   )
+                                               )
                oa.op_type = OP_RSHIFT;
            else
                oa.op_type = OP_LSHIFT;
index 2c2a00eb57ea8a8a65b7f74195ba2c5d26c3e7cf..ca9150940c91d9e6e36f971a041c90f75ef30a6a 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1190,
 /**/
     1189,
 /**/