diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-28 19:05:57 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-28 19:05:57 +0200 |
commit | 8c96af9c05bfcac2d5ae081e098d4863db561511 (patch) | |
tree | aa01cdaf87cf8050334c8cb20014774623614e73 /src/search.c | |
parent | a893194d91a2942d4d54085d746ed137a9251b69 (diff) | |
download | vim-git-8c96af9c05bfcac2d5ae081e098d4863db561511.tar.gz |
patch 8.1.2096: too many #ifdefsv8.1.2096
Problem: Too many #ifdefs.
Solution: Graduate FEAT_COMMENTS.
Diffstat (limited to 'src/search.c')
-rw-r--r-- | src/search.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/search.c b/src/search.c index abf32d685..63171a92c 100644 --- a/src/search.c +++ b/src/search.c @@ -5393,7 +5393,6 @@ search_line: */ if (!define_matched && skip_comments) { -#ifdef FEAT_COMMENTS if ((*line != '#' || STRNCMP(skipwhite(line + 1), "define", 6) != 0) && get_leader_len(line, NULL, FALSE, TRUE)) @@ -5408,7 +5407,6 @@ search_line: p = skipwhite(line); if (matched || (p[0] == '/' && p[1] == '*') || p[0] == '*') -#endif for (p = line; *p && p < startp; ++p) { if (matched |