diff plugin/gutentags.vim @ 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 a20588c2c020
children 173f055bde34
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