commit | 0d2c4bf1714a6b286bd7a10061044414e0b17a15 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Oct 17 22:17:02 2019 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Oct 17 22:17:02 2019 +0200 |
tree | 6e74d5a634a52fe9bdd75d620d699949b491f990 | |
parent | 3cea8a9a51c7b26a01a75dc29d9d8a621fc70b57 [diff] [blame] |
patch 8.1.2170: cannot build without the +termresponse feature Problem: Cannot build without the +termresponse feature. Solution: Add #ifdef.
diff --git a/src/term.c b/src/term.c index b287121..ef857a1 100644 --- a/src/term.c +++ b/src/term.c
@@ -1957,8 +1957,10 @@ #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)