summaryrefslogtreecommitdiff
path: root/src/testdir/test_regexp_latin.vim
AgeCommit message (Collapse)Author
2017-06-17patch 8.0.0645: no error for illegal back reference in NFA engineBram Moolenaar
Problem: The new regexp engine does not give an error for using a back reference where it is not allowed. (Dominique Pelle) Solution: Check the back reference like the old engine. (closes #1774)
2016-09-09patch 7.4.2355Bram Moolenaar
Problem: Regexp fails to match when using "\>\)\?". (Ramel) Solution: When a state is already in the list, but addstate_here() is used and the existing state comes later, add the new state anyway.
2016-09-09patch 7.4.2354Bram Moolenaar
Problem: The example that explains nested backreferences does not work properly with the new regexp engine. (Harm te Hennepe) Solution: Also save the end position when adding a state. (closes #990)
2016-08-18patch 7.4.2228Bram Moolenaar
Problem: Test files have inconsistant modelines. Solution: Don't set 'tabstop' to 2, use 'sts' and 'sw'.
2016-08-16patch 7.4.2219Bram Moolenaar
Problem: Recursive call to substitute gets stuck in sandbox. (Nikolai Pavlov) Solution: Handle the recursive call. (Christian Brabandt, closes #950) Add a test.
2016-04-03patch 7.4.1700Bram Moolenaar
Problem: Equivalence classes are not properly tested. Solution: Add tests for multi-byte and latin1. Fix an error. (Owen Leibman)