]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 7.4.914 v7.4.914
authorBram Moolenaar <Bram@vim.org>
Tue, 10 Nov 2015 14:18:02 +0000 (15:18 +0100)
committerBram Moolenaar <Bram@vim.org>
Tue, 10 Nov 2015 14:18:02 +0000 (15:18 +0100)
Problem:    New compiler warning: logical-not-parentheses
Solution:   Silence the warning.

src/term.c
src/version.c

index d35a57e0464f563bd6fd4093b7bc6949e196d1c7..51698fb993c779531c7f72b47b86ee9919c65fe2 100644 (file)
@@ -2276,7 +2276,7 @@ add_termcap_entry(name, force)
  */
     for (i = 0; i < 2; ++i)
     {
-       if (!builtin_first == i)
+       if ((!builtin_first) == i)
 #endif
        /*
         * Search in builtin termcap
index 1604635aeb7cd4f00a48494ce3f19a21f78a8e39..450892a5c533924e5fcce7f57a819a255164df9f 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    914,
 /**/
     913,
 /**/