commit c7cf1232a71b0db700b818e2ae8e8ebaf40133f2
parent b0fcdf9f099b17198630025a700e87f05b4e3a84
Author: zeertzjq <zeertzjq@outlook.com>
Date: Sun, 25 Sep 2022 09:49:21 +0800
vim-patch:8.2.4467: running filetype test leaves file behind (#20335)
Problem: Running filetype test leaves file behind.
Solution: Delete the file.
https://github.com/vim/vim/commit/0e71b7d4ce3e1210150ce772e1af6956057a71ed
vim-patch:8.2.4466: MS-Windows: illegal memory access in installer
Problem: MS-Windows: illegal memory access in installer when using
"create-directories" as the final argument.
Solution: Check the argument count. (Cam Sinclair, closes vim/vim#9844)
https://github.com/vim/vim/commit/5c6edf41f9beffea21ce45d658822cc4c0745fdb
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/nvim/testdir/test_filetype.vim b/src/nvim/testdir/test_filetype.vim
@@ -932,7 +932,9 @@ func Test_d_file()
call assert_equal('d', &filetype)
bwipe!
+ " clean up
filetype off
+ call delete('Xfile.d')
endfunc
func Test_dat_file()