comparison src/testdir/test64.in @ 5227:a08fa2919f2b v7.4a.039

updated for version 7.4a.039 Problem: New regexp engine doesn't match pattern. (Ingo Karkat) Solution: When adding a state also check for different PIM if the list of states has any state with a PIM.
author Bram Moolenaar <bram@vim.org>
date Sun, 21 Jul 2013 18:59:24 +0200
parents 9982ec574beb
children 2e63b6c763f7
comparison
equal deleted inserted replaced
5226:a8134fb977f7 5227:a08fa2919f2b
339 :call add(tl, [2, '^\%(.*bar\)\@!.*\zsfoo', ' bar foo ']) 339 :call add(tl, [2, '^\%(.*bar\)\@!.*\zsfoo', ' bar foo '])
340 :call add(tl, [2, '^\%(.*bar\)\@!.*\zsfoo', ' foo bar ']) 340 :call add(tl, [2, '^\%(.*bar\)\@!.*\zsfoo', ' foo bar '])
341 :call add(tl, [2, '^\%(.*bar\)\@!.*\zsfoo', ' foo xxx ', 'foo']) 341 :call add(tl, [2, '^\%(.*bar\)\@!.*\zsfoo', ' foo xxx ', 'foo'])
342 :call add(tl, [2, '[ ]\@!\p\%([ ]\@!\p\)*:', 'implicit mappings:', 'mappings:']) 342 :call add(tl, [2, '[ ]\@!\p\%([ ]\@!\p\)*:', 'implicit mappings:', 'mappings:'])
343 :call add(tl, [2, 'm\k\+_\@=\%(_\@!\k\)\@<=\k\+e', 'mx__xe', 'mx__xe']) 343 :call add(tl, [2, 'm\k\+_\@=\%(_\@!\k\)\@<=\k\+e', 'mx__xe', 'mx__xe'])
344 :call add(tl, [2, '\%(\U\@<=S\k*\|S\l\)R', 'SuR', 'SuR'])
344 :" 345 :"
345 :"""" Combining different tests and features 346 :"""" Combining different tests and features
346 :call add(tl, [2, '[[:alpha:]]\{-2,6}', '787abcdiuhsasiuhb4', 'ab']) 347 :call add(tl, [2, '[[:alpha:]]\{-2,6}', '787abcdiuhsasiuhb4', 'ab'])
347 :call add(tl, [2, '', 'abcd', '']) 348 :call add(tl, [2, '', 'abcd', ''])
348 :call add(tl, [2, '\v(())', 'any possible text', '']) 349 :call add(tl, [2, '\v(())', 'any possible text', ''])