diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-21 12:34:17 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-21 12:34:17 +0200 |
commit | 0fabe3fdbe883935a670bb105f1ba2c5991cd4ea (patch) | |
tree | 79d9b96843638083420777411d8456530fd451c1 /src/testdir/test95.in | |
parent | 09ea9fcf3f0eef0e0f8f8552d856f8896749e846 (diff) | |
download | vim-0fabe3fdbe883935a670bb105f1ba2c5991cd4ea.zip |
updated for version 7.3.982
Problem: In the new regexp engine \p does not work on multi-byte
characters.
Solution: Don't point to an integer but the characters.
Diffstat (limited to 'src/testdir/test95.in')
-rw-r--r-- | src/testdir/test95.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/testdir/test95.in b/src/testdir/test95.in index 78a999f56..fb78b88dd 100644 --- a/src/testdir/test95.in +++ b/src/testdir/test95.in @@ -25,6 +25,9 @@ STARTTEST :call add(tl, [' [^ ]\+', 'start มabcdม ', ' มabcdม']) :call add(tl, ['[ม[:alpha:][=a=]]\+', '879 aiaãมâมaiuvna ', 'aiaãมâมaiuvna']) +:" this is not a normal "i" but 0xec +:call add(tl, ['\p\+', 'ìa', 'ìa']) + :"""" Run the tests :" |