diff src/testdir/test_filetype.vim @ 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 62a6d99082f7
children 180fb9981255
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)