From: Bram Moolenaar Date: Tue, 10 Nov 2015 14:18:02 +0000 (+0100) Subject: patch 7.4.914 X-Git-Tag: v7.4.914 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=98b30a473a58ae98c280e0383c8b1e08c0ebced5;p=thirdparty%2Fvim.git patch 7.4.914 Problem: New compiler warning: logical-not-parentheses Solution: Silence the warning. --- diff --git a/src/term.c b/src/term.c index d35a57e046..51698fb993 100644 --- a/src/term.c +++ b/src/term.c @@ -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 diff --git a/src/version.c b/src/version.c index 1604635aeb..450892a5c5 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 914, /**/ 913, /**/