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 d35a57e..51698fb 100644
--- a/src/term.c
+++ b/src/term.c
@@ -2276,7 +2276,7 @@
  */
     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 1604635..450892a 100644
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    914,
+/**/
     913,
 /**/
     912,