diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-10-15 13:22:01 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-10-15 13:22:01 +0200 |
commit | 9377df3ecd0bd3acb5d46cb8af7fe60867f247f2 (patch) | |
tree | b6ef803c19ff558bd280b1c79fbc6362fb66eda3 /src/term.c | |
parent | 65e4c4f6868882a380c319632a1728a5e7d274ad (diff) | |
download | vim-git-9377df3ecd0bd3acb5d46cb8af7fe60867f247f2.tar.gz |
patch 8.0.1195: can't build on MS-Windowsv8.0.1195
Problem: Can't build on MS-Windows.
Solution: Adjust #ifdef and add #ifdefs.
Diffstat (limited to 'src/term.c')
-rw-r--r-- | src/term.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/term.c b/src/term.c index f61806980..7a48f995a 100644 --- a/src/term.c +++ b/src/term.c @@ -125,7 +125,7 @@ static int crv_status = STATUS_GET; /* Request Cursor position report: */ static int u7_status = STATUS_GET; -#ifdef FEAT_TERMINAL +# ifdef FEAT_TERMINAL /* Request foreground color report: */ static int rfg_status = STATUS_GET; static int fg_r = 0; @@ -134,7 +134,7 @@ static int fg_b = 0; static int bg_r = 255; static int bg_g = 255; static int bg_b = 255; -#endif +# endif /* Request background color report: */ static int rbg_status = STATUS_GET; @@ -5828,7 +5828,7 @@ check_termcode( return 0; /* no match found */ } -#if defined(FEAT_TERMINAL) || defined(PROTO) +#if (defined(FEAT_TERMINAL) && defined(FEAT_TERMRESPONSE)) || defined(PROTO) /* * Get the text foreground color, if known. */ |