summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-10-17 22:17:02 +0200
committerBram Moolenaar <Bram@vim.org>2019-10-17 22:17:02 +0200
commit0d2c4bf1714a6b286bd7a10061044414e0b17a15 (patch)
tree6e74d5a634a52fe9bdd75d620d699949b491f990 /src
parent3cea8a9a51c7b26a01a75dc29d9d8a621fc70b57 (diff)
downloadvim-git-0d2c4bf1714a6b286bd7a10061044414e0b17a15.tar.gz
patch 8.1.2170: cannot build without the +termresponse featurev8.1.2170
Problem: Cannot build without the +termresponse feature. Solution: Add #ifdef.
Diffstat (limited to 'src')
-rw-r--r--src/term.c2
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/term.c b/src/term.c
index b28712169..ef857a1a6 100644
--- a/src/term.c
+++ b/src/term.c
@@ -1957,8 +1957,10 @@ set_termname(char_u *term)
#if defined(UNIX) || defined(VMS)
term_is_xterm = vim_is_xterm(term);
#endif
+#ifdef FEAT_TERMRESPONSE
is_not_xterm = FALSE;
is_mac_terminal = FALSE;
+#endif
#ifdef FEAT_MOUSE
# if defined(UNIX) || defined(VMS)
diff --git a/src/version.c b/src/version.c
index 78d0dc9ba..b7d9cb7d8 100644
--- a/src/version.c
+++ b/src/version.c
@@ -754,6 +754,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2170,
+/**/
2169,
/**/
2168,