summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-05-23 22:43:08 +0200
committerBram Moolenaar <Bram@vim.org>2013-05-23 22:43:08 +0200
commit02e26d9807295ffddf575f0dd52cf343ab087d33 (patch)
tree9504f042dac5d9f45ceef079c6efa5edab1cec5a /src
parenta03dbed9e962f350c8bc4d53446e5f193b367435 (diff)
downloadvim-git-02e26d9807295ffddf575f0dd52cf343ab087d33.tar.gz
updated for version 7.3.1008v7.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)
Diffstat (limited to 'src')
-rw-r--r--src/testdir/test95.in6
-rw-r--r--src/testdir/test95.ok2
-rw-r--r--src/version.c2
3 files changed, 6 insertions, 4 deletions
diff --git a/src/testdir/test95.in b/src/testdir/test95.in
index 7185c8ecb..41e3f78b2 100644
--- a/src/testdir/test95.in
+++ b/src/testdir/test95.in
@@ -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'])
diff --git a/src/testdir/test95.ok b/src/testdir/test95.ok
index 4a91073c8..4c1f0ca1d 100644
--- a/src/testdir/test95.ok
+++ b/src/testdir/test95.ok
@@ -8,5 +8,5 @@ OK - \p\+
OK - \i\+
OK - \%#=1\i\+
OK - \f\+
-OK - \%#=1\i\+
+OK - \%#=1\f\+
OK - [^[=a=]]\+
diff --git a/src/version.c b/src/version.c
index bee106ca4..07bd9dce8 100644
--- a/src/version.c
+++ b/src/version.c
@@ -729,6 +729,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1008,
+/**/
1007,
/**/
1006,