From 30276f2beb248557c6b33cd5418bca8b7084b0a5 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 24 Jan 2019 17:59:39 +0100 Subject: patch 8.1.0811: too many #ifdefs Problem: Too many #ifdefs. Solution: Graduate FEAT_MBYTE, the final chapter. --- src/testdir/test_search.vim | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/testdir/test_search.vim') diff --git a/src/testdir/test_search.vim b/src/testdir/test_search.vim index 86df794b5..0dfea49f6 100644 --- a/src/testdir/test_search.vim +++ b/src/testdir/test_search.vim @@ -1127,9 +1127,6 @@ endfunc " Test for search('multi-byte char', 'bce') func Test_search_multibyte() - if !has('multi_byte') - return - endif let save_enc = &encoding set encoding=utf8 enew! @@ -1178,7 +1175,7 @@ func Test_search_Ctrl_L_combining() " ' ̇' U+0307 Dec:775 COMBINING DOT ABOVE ̇ /\%u307\Z "\u0307" " ' ̣' U+0323 Dec:803 COMBINING DOT BELOW ̣ /\%u323 "\u0323" " Those should also appear on the commandline - if !has('multi_byte') || !exists('+incsearch') + if !exists('+incsearch') return endif call Cmdline3_prep() -- cgit v1.2.1