diff options
author | Yegappan Lakshmanan <yegappan@yahoo.com> | 2022-03-06 14:27:10 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-03-06 14:27:10 +0000 |
commit | 655b734ee858e90dd8d28549b7704a71b25d30e7 (patch) | |
tree | a18d58d13ad674adfc569675fe1b7979b8fe3846 /src/feature.h | |
parent | 9eccee0e856e9fc77c343028b516dfe5df8fd1ed (diff) | |
download | vim-git-655b734ee858e90dd8d28549b7704a71b25d30e7.tar.gz |
patch 8.2.4518: the binary tag search feature is always enabledv8.2.4518
Problem: The binary tag search feature is always enabled.
Solution: Remove the #ifdefs. Add a few more tests. (Yegappan Lakshmanan,
closes #9893)
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/feature.h b/src/feature.h index 9564f8e10..0f5bf1e01 100644 --- a/src/feature.h +++ b/src/feature.h @@ -249,11 +249,6 @@ #endif /* - * +tag_binary Can use a binary search for the tags file. - */ -#define FEAT_TAG_BINS - -/* * +cscope Unix only: Cscope support. */ #if defined(UNIX) && defined(FEAT_BIG) && !defined(FEAT_CSCOPE) && !defined(MACOS_X) |