comparison src/term.c @ 18352:94e1a49b879e v8.1.2170

patch 8.1.2170: cannot build without the +termresponse feature Commit: https://github.com/vim/vim/commit/0d2c4bf1714a6b286bd7a10061044414e0b17a15 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Oct 17 22:17:02 2019 +0200 patch 8.1.2170: cannot build without the +termresponse feature Problem: Cannot build without the +termresponse feature. Solution: Add #ifdef.
author Bram Moolenaar <Bram@vim.org>
date Thu, 17 Oct 2019 22:30:03 +0200
parents b1796f1b28fa
children 9f51d0cef8da
comparison
equal deleted inserted replaced
18351:9c2ab919ead5 18352:94e1a49b879e
1955 } 1955 }
1956 1956
1957 #if defined(UNIX) || defined(VMS) 1957 #if defined(UNIX) || defined(VMS)
1958 term_is_xterm = vim_is_xterm(term); 1958 term_is_xterm = vim_is_xterm(term);
1959 #endif 1959 #endif
1960 #ifdef FEAT_TERMRESPONSE
1960 is_not_xterm = FALSE; 1961 is_not_xterm = FALSE;
1961 is_mac_terminal = FALSE; 1962 is_mac_terminal = FALSE;
1963 #endif
1962 1964
1963 #ifdef FEAT_MOUSE 1965 #ifdef FEAT_MOUSE
1964 # if defined(UNIX) || defined(VMS) 1966 # if defined(UNIX) || defined(VMS)
1965 # ifdef FEAT_MOUSE_TTY 1967 # ifdef FEAT_MOUSE_TTY
1966 /* 1968 /*