diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-01-24 15:54:21 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-01-24 15:54:21 +0100 |
commit | fc3abf47fbe1e426f2b676c316c81ee9ff607075 (patch) | |
tree | 87b9be7b053e71ee6ec750f7c0f0387e9287d4c0 /src/kword_test.c | |
parent | 135059724f140ceac889c9f8136bd1bf5c41d49d (diff) | |
download | vim-git-fc3abf47fbe1e426f2b676c316c81ee9ff607075.tar.gz |
patch 8.1.0806: too many #ifdefsv8.1.0806
Problem: Too many #ifdefs.
Solution: Graduate FEAT_MBYTE, part 2.
Diffstat (limited to 'src/kword_test.c')
-rw-r--r-- | src/kword_test.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/kword_test.c b/src/kword_test.c index 2e6640b8b..927c4fd0c 100644 --- a/src/kword_test.c +++ b/src/kword_test.c @@ -21,7 +21,6 @@ /* This file has to be included because the tested functions are static */ #include "charset.c" -#ifdef FEAT_MBYTE /* * Test the results of vim_iswordc() and vim_iswordp() are matched. */ @@ -73,13 +72,10 @@ test_isword_funcs_utf8(void) } } } -#endif int main(void) { -#ifdef FEAT_MBYTE test_isword_funcs_utf8(); -#endif return 0; } |