diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-09-25 18:16:38 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-09-25 18:16:38 +0200 |
commit | f211884fa151a3c39b1a85a115d6d88ce85bbe54 (patch) | |
tree | f0c0f08921f79390a278b9c15336fe4438b8c8ff /src/testdir/test64.ok | |
parent | 699c12076de7d8811045cd2b98df78d7108b68ed (diff) | |
download | vim-git-f211884fa151a3c39b1a85a115d6d88ce85bbe54.tar.gz |
updated for version 7.4.037v7.4.037
Problem: Using "\ze" in a sub-pattern does not result in the end of the
match to be set. (Axel Bender)
Solution: Copy the end of match position when a recursive match was
successful.
Diffstat (limited to 'src/testdir/test64.ok')
-rw-r--r-- | src/testdir/test64.ok | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/testdir/test64.ok b/src/testdir/test64.ok index a1c3f56e9..401da4071 100644 --- a/src/testdir/test64.ok +++ b/src/testdir/test64.ok @@ -983,6 +983,9 @@ OK 2 - \(foo\)\@<=.* OK 0 - \(r\@<=\|\w\@<!\)\/ OK 1 - \(r\@<=\|\w\@<!\)\/ OK 2 - \(r\@<=\|\w\@<!\)\/ +OK 0 - ^[a-z]\+\ze \&\(asdf\)\@<! +OK 1 - ^[a-z]\+\ze \&\(asdf\)\@<! +OK 2 - ^[a-z]\+\ze \&\(asdf\)\@<! OK 0 - \(a*\)\@>a OK 1 - \(a*\)\@>a OK 2 - \(a*\)\@>a |