diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-10-13 12:30:08 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-10-13 12:30:08 +0100 |
commit | d26c5805bcbd630dab0478c2d22503a6e32a83c1 (patch) | |
tree | 3893b73181832ad6c7aab687f1d0d47dacfc7515 /src/testdir/Make_all.mak | |
parent | f8412c9d7cc487dacf47a217ae947da68a525c53 (diff) | |
download | vim-git-d26c5805bcbd630dab0478c2d22503a6e32a83c1.tar.gz |
patch 9.0.0737: Lisp word only recognized when a space followsv9.0.0737
Problem: Lisp word only recognized when a space follows.
Solution: Also match a word at the end of a line. Rename the test. Use a
compiled function to avoid backslashes.
Diffstat (limited to 'src/testdir/Make_all.mak')
-rw-r--r-- | src/testdir/Make_all.mak | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/testdir/Make_all.mak b/src/testdir/Make_all.mak index 7aff1e8a4..743da38e5 100644 --- a/src/testdir/Make_all.mak +++ b/src/testdir/Make_all.mak @@ -182,7 +182,7 @@ NEW_TESTS = \ test_largefile \ test_let \ test_lineending \ - test_lispwords \ + test_lispindent \ test_listchars \ test_listdict \ test_listener \ @@ -427,6 +427,7 @@ NEW_TESTS_RES = \ test_langmap.res \ test_let.res \ test_lineending.res \ + test_lispindent.res \ test_listchars.res \ test_listdict.res \ test_listener.res \ |