diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-16 21:50:51 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-16 21:50:51 +0100 |
commit | 58adb14739fa240ca6020cede9ab1f1cb07bd90a (patch) | |
tree | 659dac4baa05f277c760ffe5f73f128c4ee20536 /src/Makefile | |
parent | da440d21a6b94d7f525fa7be9b1417c78dd9aa4c (diff) | |
download | vim-git-58adb14739fa240ca6020cede9ab1f1cb07bd90a.tar.gz |
patch 7.4.1108v7.4.1108
Problem: Expanding "~" halfway a file name.
Solution: Handle the file name as one name. (Marco Hinz) Add a test.
Closes #564.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 42c86f30b..4977d7cb2 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1975,12 +1975,15 @@ test1 \ test70 test71 test72 test73 test74 test75 test76 test77 test78 test79 \ test80 test81 test82 test83 test84 test85 test86 test87 test88 test89 \ test90 test91 test92 test93 test94 test95 test96 test97 test98 test99 \ - test100 test101 test102 test103 test104 test105 test106 test107: + test100 test101 test102 test103 test104 test105 test106 test107 test108: cd testdir; rm -f $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE) test_assert \ test_backspace_opt \ test_cdo \ + test_cursor_func \ + test_delete \ + test_expand \ test_hardcopy \ test_increment \ test_lispwords \ |