changeset 192:09cc408db201

Fix cscope generation use of proj_dir
author Simon Mutch <smutch@unimelb.edu.au>
date Fri, 23 Jun 2017 11:44:53 +1000
parents 25dbdb52adb5
children 4cccf8c88421
files autoload/gutentags/cscope.vim
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/autoload/gutentags/cscope.vim	Thu Jun 08 07:11:43 2017 -0700
+++ b/autoload/gutentags/cscope.vim	Fri Jun 23 11:44:53 2017 +1000
@@ -56,7 +56,7 @@
     let l:cmd .= ' -p ' . a:proj_dir
     let l:cmd .= ' -f ' . a:tags_file
     let l:file_list_cmd =
-        \ gutentags#get_project_file_list_cmd(l:proj_dir)
+        \ gutentags#get_project_file_list_cmd(a:proj_dir)
     if !empty(l:file_list_cmd)
         let l:cmd .= ' -L "' . l:file_list_cmd . '"'
     endif