Skip to content

Commit

Permalink
Fix undefined variable error caused by a missing rename.
Browse files Browse the repository at this point in the history
  • Loading branch information
ludovicchabant committed Mar 16, 2015
1 parent 90c86c7 commit 09bb38c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autoload/gutentags/ctags.vim
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ function! gutentags#ctags#generate(proj_dir, tags_file, write_mode) abort
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')
Expand Down

0 comments on commit 09bb38c

Please sign in to comment.