changeset 25:a20588c2c020

Fix for gutentags#statusline() with no args.
author Morton Fox <github@qslw.com>
date Tue, 02 Sep 2014 17:10:58 -0400
parents bab5f37faa1e
children 8bcc9da32f7c
files plugin/gutentags.vim
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 17:10:58 2014 -0400
@@ -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