Merge pull request #167 from zekzekus/master

fixed variable typo in deprecation function
This commit is contained in:
David Halter
2013-08-25 08:57:56 -07:00
2 changed files with 2 additions and 1 deletions

View File

@@ -18,3 +18,4 @@ Mathieu Comandon (@strycore)
Jean-Louis Fuchs (@ganwell)
Nick Hurley (@todesschaf)
Tinche (@Tinche)
Zekeriya Koc (@zekzekus)

View File

@@ -33,7 +33,7 @@ let s:deprecations = {
for [key, val] in items(s:deprecations)
if exists('g:jedi#'.key)
echom "'g:jedi#".key."' is deprecated. Please use 'g:jedi#".value."' instead. Sorry for the inconvenience."
echom "'g:jedi#".key."' is deprecated. Please use 'g:jedi#".val."' instead. Sorry for the inconvenience."
exe 'let g:jedi#'.val.' = g:jedi#'.key
end
endfor