changeset 26:8bcc9da32f7c

Merge pull request #3 from mortonfox/master Fix for gutentags#statusline() with no args.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 02 Sep 2014 16:15:10 -0700
parents bab5f37faa1e (current diff) a20588c2c020 (diff)
children 173f055bde34
files
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugin/gutentags.vim	Tue Sep 02 11:22:50 2014 -0700
+++ b/plugin/gutentags.vim	Tue Sep 02 16:15:10 2014 -0700
@@ -469,7 +469,7 @@
 
     " Figure out what the user is customizing.
     let l:gen_msg = 'TAGS'
-    if a:0 >= 0
+    if a:0 > 0
         let l:gen_msg = a:1
     endif