diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-11-22 16:11:22 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-22 16:11:22 -0500 |
commit | 6068b907cbc863b7206f4a17a1223b0ffe3b5224 (patch) | |
tree | aab481e5783ce5bcbf46c2d049d603ad529da1e7 /runtime | |
parent | 5705bb1250f0fb0d607378ddfb63966d46ea510b (diff) | |
parent | 4d4d77a3c4a9a31f9b5c34aeff29b3db094653ac (diff) | |
download | rneovim-6068b907cbc863b7206f4a17a1223b0ffe3b5224.tar.gz rneovim-6068b907cbc863b7206f4a17a1223b0ffe3b5224.tar.bz2 rneovim-6068b907cbc863b7206f4a17a1223b0ffe3b5224.zip |
Merge pull request #13345 from shade-of-noon/lingering-e145
Remove leftover handling of restricted mode.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/autoload/man.vim | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/autoload/man.vim b/runtime/autoload/man.vim index dab88fde23..5008b8cfaf 100644 --- a/runtime/autoload/man.vim +++ b/runtime/autoload/man.vim @@ -13,8 +13,6 @@ function! man#init() abort try " Check for -l support. call s:get_page(s:get_path('', 'man')) - catch /E145:/ - " Ignore the error in restricted mode catch /command error .*/ let s:localfile_arg = v:false endtry |