pkt / lh-vim

Luc Hermitte's lh-vim to save it from google code closing
0 stars 0 forks source link

"lh#common#CheckDeps() is deprecated, use lh#common#check_deps() instead." #25

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Install lhCpp
2. Start GVim (maybe Vim does that mistake too)

What is the expected output?
Nothing

What do you see instead?
{{{
lh#common#CheckDeps() is deprecated, use lh#common#check_deps() instead.
lh#common#CheckDeps() is deprecated, use lh#common#check_deps() instead.
}}}

How to fix the issue ?
Replace (not valid diff file, written with my hand, I don't exactly know
standard format for diff files) :
{{{
@file autoload/lh/common.vim @ line 253
<  return lh#common#CheckDeps(a:Symbol, a:File, a:path, 'mu-template')
>  return lh#common#check_deps(a:Symbol, a:File, a:path, 'mu-template')
@file ftplugin/cpp/cpp_GotoFunctionImpl.vim @ line 276
<      \    !lh#common#CheckDeps('*Cpp_CurrentScope',
>      \    !lh#common#check_deps('*Cpp_CurrentScope',
      \         'cpp_FindContextClass.vim', 'ftplugin/cpp/',
      \                 'cpp_GotoFunctionImpl')
<      \ || !lh#common#CheckDeps(':CheckOptions',
>      \ || !lh#common#check_deps(':CheckOptions',
}}}

Original issue reported on code.google.com by ekinox1...@gmail.com on 14 May 2010 at 5:29

GoogleCodeExporter commented 9 years ago
See Issue#23

Original comment by luc.herm...@gmail.com on 14 May 2010 at 5:36

GoogleCodeExporter commented 9 years ago

Original comment by luc.herm...@gmail.com on 17 May 2010 at 2:00