aboutsummaryrefslogtreecommitdiffstats
path: root/autoload
diff options
context:
space:
mode:
authorPeter Odding <peter@peterodding.com>2011-06-13 16:13:39 +0200
committerPeter Odding <peter@peterodding.com>2011-06-13 16:13:39 +0200
commit2094759c5206d974732fa699018d33d6fca910d2 (patch)
tree006bba65e1a927161d3b0261908e6d1029d7623c /autoload
parentbda802cf6b09b380b5692ff8c1ee2cb4f202ab55 (diff)
downloadvim-easytags-2094759c5206d974732fa699018d33d6fca910d2.tar.gz
Bug fix: Print the right message after :verbose UpdateTags!
Diffstat (limited to 'autoload')
-rw-r--r--autoload/xolox/easytags.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/xolox/easytags.vim b/autoload/xolox/easytags.vim
index 00b5baf..3c7f7dd 100644
--- a/autoload/xolox/easytags.vim
+++ b/autoload/xolox/easytags.vim
@@ -76,7 +76,7 @@ function! xolox#easytags#update(silent, filter_tags, filenames) " {{{2
if cfile != ''
let msg = "%s: Updated tags for %s in %s."
call xolox#misc#timer#stop(msg, s:script, expand('%:p:~'), starttime)
- elseif a:0 > 0
+ elseif !empty(a:filenames)
let msg = "%s: Updated tags in %s."
call xolox#misc#timer#stop(msg, s:script, starttime)
else