summaryrefslogtreecommitdiffstats
path: root/src/testdir
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2023-08-20 22:26:15 +0200
committerChristian Brabandt <cb@256bit.org>2023-08-20 22:28:28 +0200
commitbe07caa071ea93c07b1b2204a17237133f38b2bd (patch)
tree034bd9653476bcaaf1e9a22ac90c86a9f0465c39 /src/testdir
parent6d626c41842e2c3ab698338bbe5fcfcf0557ecd8 (diff)
patch 9.0.1777: patch 9.0.1771 causes problemsv9.0.1777
Problem: patch 9.0.1771 causes problems Solution: revert it Revert "patch 9.0.1771: regex: combining chars in collections not handled" This reverts commit ca22fc36a4e8a315f199893ee8ff6253573f5fbe. Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src/testdir')
-rw-r--r--src/testdir/test_regexp_utf8.vim11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/testdir/test_regexp_utf8.vim b/src/testdir/test_regexp_utf8.vim
index 6669dee57e..b591aedbb7 100644
--- a/src/testdir/test_regexp_utf8.vim
+++ b/src/testdir/test_regexp_utf8.vim
@@ -575,16 +575,5 @@ func Test_match_too_complicated()
set regexpengine=0
endfunc
-func Test_combining_chars_in_collection()
- new
- for i in range(0,2)
- exe "set re=".i
- put =['ɔ̃', 'ɔ', '̃ ã', 'abcd']
- :%s/[ɔ̃]//
- call assert_equal(['', '', 'ɔ', '̃ ã', 'abcd'], getline(1,'$'))
- %d
- endfor
- bw!
-endfunc
" vim: shiftwidth=2 sts=2 expandtab