Mercurial > vim
changeset 17555:c2eb5118ba89 v8.1.1775
patch 8.1.1775: error message may be empty in filetype test
commit https://github.com/vim/vim/commit/eee9f65b2a213e9031f172d9d3b22adad6cb985d
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Jul 29 21:14:42 2019 +0200
patch 8.1.1775: error message may be empty in filetype test
Problem: Error message may be empty in filetype test.
Solution: Use v:exception instead. (Daniel Hahler, closs https://github.com/vim/vim/issues/4744)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 29 Jul 2019 21:15:08 +0200 |
parents | fe013eacc399 |
children | 854411a7be7d |
files | src/testdir/test_filetype.vim src/version.c |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/testdir/test_filetype.vim +++ b/src/testdir/test_filetype.vim @@ -521,7 +521,7 @@ func CheckItems(checks) try exe 'edit ' . fnameescape(names[i]) catch - call assert_report('cannot edit "' . names[i] . '": ' . v:errmsg) + call assert_report('cannot edit "' . names[i] . '": ' . v:exception) endtry if &filetype == '' && &readonly " File exists but not able to edit it (permission denied)