diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-12-01 18:58:11 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-12-01 18:58:11 +0100 |
commit | 912bc4a51af0ad947cb39deba2a6fa4ee27af906 (patch) | |
tree | 06fdb34eba3f202216b7b795ad74f1346a006360 /src/drawline.c | |
parent | 6f1f0ca3edf395102ff3109c998d81300c8be3c9 (diff) | |
download | vim-git-912bc4a51af0ad947cb39deba2a6fa4ee27af906.tar.gz |
patch 8.1.2376: preprocessor indents are incorrectv8.1.2376
Problem: Preprocessor indents are incorrect.
Solution: Fix the indents. (Ken Takata, closes #5298)
Diffstat (limited to 'src/drawline.c')
-rw-r--r-- | src/drawline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drawline.c b/src/drawline.c index 95ade68b2..cb1c401e8 100644 --- a/src/drawline.c +++ b/src/drawline.c @@ -1940,11 +1940,11 @@ win_line( c_final = NUL; if (VIM_ISWHITE(c)) { -#ifdef FEAT_CONCEAL +# ifdef FEAT_CONCEAL if (c == TAB) // See "Tab alignment" below. FIX_FOR_BOGUSCOLS; -#endif +# endif if (!wp->w_p_list) c = ' '; } |