commit | 88c89c77229e725ab2613b022249e2f506d82b82 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Aug 14 14:01:05 2021 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Aug 14 14:01:05 2021 +0200 |
tree | 13d6d797ce01be15745d0b61b46ad8bdb23c4a5f | |
parent | 78a9c2e670d29349404b346e0aa90264cab19e9b [diff] [blame] |
patch 8.2.3341: Vim9: function call aborted despite try/catch Problem: Vim9: function call aborted despite try/catch. (Naohiro Ono) Solution: Ignore error caught by try/catch. (closes #8755)
diff --git a/src/testdir/vim9.vim b/src/testdir/vim9.vim index 742a093..a40b444 100644 --- a/src/testdir/vim9.vim +++ b/src/testdir/vim9.vim
@@ -12,10 +12,10 @@ try exe 'so ' .. fname call Func() - delfunc! Func finally call chdir(cwd) call delete(fname) + delfunc! Func endtry endfunc