0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

updated for version 7.3.1008

Problem:    Test 95 fails on MS-Windows.
Solution:   Set 'nomore'. Change \i to \f.  Change multi-byte character to
            something that is not matching \i. (Ken Takata)
This commit is contained in:
Bram Moolenaar
2013-05-23 22:43:08 +02:00
parent a03dbed9e9
commit 02e26d9807
3 changed files with 6 additions and 4 deletions

View File

@@ -30,10 +30,10 @@ STARTTEST
:call add(tl, ['\p\+', 'ìa', 'ìa'])
:"""" Test recognition of some character classes
:call add(tl, ['\i\+', '&*§xx ', 'xx'])
:call add(tl, ['\%#=1\i\+', '&*§xx ', 'xx'])
:call add(tl, ['\i\+', '&*¨xx ', 'xx'])
:call add(tl, ['\%#=1\i\+', '&*¨xx ', 'xx'])
:call add(tl, ['\f\+', '&*Ÿfname ', 'fname'])
:call add(tl, ['\%#=1\i\+', '&*Ÿfname ', 'fname'])
:call add(tl, ['\%#=1\f\+', '&*Ÿfname ', 'fname'])
:"""" Combining different tests and features
:call add(tl, ['[^[=a=]]\+', 'ddaãâbcd', 'dd'])

View File

@@ -8,5 +8,5 @@ OK - \p\+
OK - \i\+
OK - \%#=1\i\+
OK - \f\+
OK - \%#=1\i\+
OK - \%#=1\f\+
OK - [^[=a=]]\+

View File

@@ -728,6 +728,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1008,
/**/
1007,
/**/