comparison src/version.c @ 27986:c724906134a3 v8.2.4518

patch 8.2.4518: the binary tag search feature is always enabled Commit: https://github.com/vim/vim/commit/655b734ee858e90dd8d28549b7704a71b25d30e7 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Sun Mar 6 14:27:10 2022 +0000 patch 8.2.4518: the binary tag search feature is always enabled Problem: The binary tag search feature is always enabled. Solution: Remove the #ifdefs. Add a few more tests. (Yegappan Lakshmanan, closes #9893)
author Bram Moolenaar <Bram@vim.org>
date Sun, 06 Mar 2022 15:30:06 +0100
parents da660b0f20d1
children 0c84b198c678
comparison
equal deleted inserted replaced
27985:719dc5b9fc6e 27986:c724906134a3
588 #endif 588 #endif
589 // only interesting on Unix systems 589 // only interesting on Unix systems
590 #if defined(USE_SYSTEM) && defined(UNIX) 590 #if defined(USE_SYSTEM) && defined(UNIX)
591 "+system()", 591 "+system()",
592 #endif 592 #endif
593 #ifdef FEAT_TAG_BINS
594 "+tag_binary", 593 "+tag_binary",
595 #else
596 "-tag_binary",
597 #endif
598 "-tag_old_static", 594 "-tag_old_static",
599 "-tag_any_white", 595 "-tag_any_white",
600 #ifdef FEAT_TCL 596 #ifdef FEAT_TCL
601 # ifdef DYNAMIC_TCL 597 # ifdef DYNAMIC_TCL
602 "+tcl/dyn", 598 "+tcl/dyn",
752 NULL 748 NULL
753 }; 749 };
754 750
755 static int included_patches[] = 751 static int included_patches[] =
756 { /* Add new patch number below this line */ 752 { /* Add new patch number below this line */
753 /**/
754 4518,
757 /**/ 755 /**/
758 4517, 756 4517,
759 /**/ 757 /**/
760 4516, 758 4516,
761 /**/ 759 /**/