From ba99f5f17c2a80637377d01b5f124abb5b7f74cc Mon Sep 17 00:00:00 2001 From: Peter Odding Date: Sat, 9 Jul 2011 00:51:28 +0200 Subject: Skip unreadable tags files returned by tagfiles() (reported by Hannes von Haugwitz) --- autoload/xolox/easytags.vim | 14 +++++++++----- plugin/easytags.vim | 2 +- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/autoload/xolox/easytags.vim b/autoload/xolox/easytags.vim index 03bb05d..038a3ae 100644 --- a/autoload/xolox/easytags.vim +++ b/autoload/xolox/easytags.vim @@ -493,11 +493,15 @@ function! s:cache_tagged_files() " {{{3 " other purposes anyway (so the cache doesn't introduce too much overhead). let starttime = xolox#misc#timer#start() for tagsfile in tagfiles() - let fname = s:canonicalize(tagsfile) - let ftime = getftime(fname) - if get(s:known_tagfiles, fname, 0) != ftime - let [headers, entries] = xolox#easytags#read_tagsfile(fname) - call s:cache_tagged_files_in(fname, ftime, entries) + if !filereadable(tagsfile) + call xolox#misc#msg#warn("easytags.vim %s: Skipping unreadable tags file %s!", fname) + else + let fname = s:canonicalize(tagsfile) + let ftime = getftime(fname) + if get(s:known_tagfiles, fname, 0) != ftime + let [headers, entries] = xolox#easytags#read_tagsfile(fname) + call s:cache_tagged_files_in(fname, ftime, entries) + endif endif endfor call xolox#misc#timer#stop("easytags.vim %s: Initialized cache of tagged files in %s.", g:easytags_version, starttime) diff --git a/plugin/easytags.vim b/plugin/easytags.vim index 7e93604..a563297 100644 --- a/plugin/easytags.vim +++ b/plugin/easytags.vim @@ -12,7 +12,7 @@ if &cp || exists('g:loaded_easytags') finish endif -let g:easytags_version = '2.4.10' +let g:easytags_version = '2.4.11' " Configuration defaults and initialization. {{{1 -- cgit v1.2.3