summaryrefslogtreecommitdiffstats
path: root/src/version.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-07-15 20:05:54 +0200
committerBram Moolenaar <Bram@vim.org>2017-07-15 20:05:54 +0200
commit26e8558e74fc1701b57f092cc2c3dbf879cf1af3 (patch)
tree049ef063a84f79093e25ccbe654da838a5cbe77e /src/version.c
parentc4da113ef98dcfd6f2a088b1693c0317dcb5bf42 (diff)
patch 8.0.0717: terminal feature precence unclearv8.0.0717
Problem: Terminal feature not included in :version output. Solution: Add +terminal or -terminal.
Diffstat (limited to 'src/version.c')
-rw-r--r--src/version.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c
index 09b3b85605..7f4be7e730 100644
--- a/src/version.c
+++ b/src/version.c
@@ -618,6 +618,11 @@ static char *(features[]) =
#else
"-termguicolors",
#endif
+#ifdef FEAT_TERMINAL
+ "+terminal",
+#else
+ "-terminal",
+#endif
#if defined(UNIX)
/* only Unix can have terminfo instead of termcap */
# ifdef TERMINFO
@@ -765,6 +770,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 717,
+/**/
716,
/**/
715,