commit | 3c37a8e66008aadfe428a32ecf46aab4b9e285ae | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon Aug 28 23:00:55 2017 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Aug 28 23:00:55 2017 +0200 |
tree | 3c8d718c0a5cbd885103e3d34200de97b1bbcbfd | |
parent | 4db2554954056f21f2ba4cf4988c652745d7042a [diff] [blame] |
patch 8.0.1010: build failure without termresponse feature Problem: Build failure without termresponse feature. Solution: Add #ifdef.
diff --git a/src/term.c b/src/term.c index fec50d5..fdae4ea 100644 --- a/src/term.c +++ b/src/term.c
@@ -3780,8 +3780,12 @@ int blink_state_is_inverted() { +#ifdef FEAT_TERMRESPONSE return rbm_status == STATUS_GOT && rcs_status == STATUS_GOT && initial_cursor_blink != initial_cursor_shape_blink; +#else + return FALSE; +#endif } /*