diff autoload/gutentags/ctags.vim @ 45:64de69ca7195

Fix undefined variable error caused by a missing rename.
author Ludovic Chabant <ludovic@chabant.com>
date Mon, 16 Mar 2015 07:04:03 -0700
parents 99328cb71e75
children 70423c2202c5
line wrap: on
line diff
--- a/autoload/gutentags/ctags.vim	Fri Feb 20 14:37:11 2015 -0800
+++ b/autoload/gutentags/ctags.vim	Mon Mar 16 07:04:03 2015 -0700
@@ -61,8 +61,8 @@
         if g:gutentags_pause_after_update
             let l:cmd .= ' -c'
         endif
-        if len(g:gutentags_options_file)
-            let l:cmd .= ' -o "' . g:gutentags_options_file . '"'
+        if len(g:gutentags_ctags_options_file)
+            let l:cmd .= ' -o "' . g:gutentags_ctags_options_file . '"'
         endif
         if g:gutentags_trace
             if has('win32')