diff options
author | Marco Hinz <mh.codebro@gmail.com> | 2016-12-13 14:48:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-13 14:48:42 +0100 |
commit | 5855f30cb1a1bd6b4eee7ea8e2e80eb7eec8f3ec (patch) | |
tree | de8c529a55d9787a0f7a98a5a20a6d217a87cc24 /runtime/autoload/vimexpect.vim | |
parent | dbe41fe310fd558f402364a8425373318aad827e (diff) | |
download | rneovim-5855f30cb1a1bd6b4eee7ea8e2e80eb7eec8f3ec.tar.gz rneovim-5855f30cb1a1bd6b4eee7ea8e2e80eb7eec8f3ec.tar.bz2 rneovim-5855f30cb1a1bd6b4eee7ea8e2e80eb7eec8f3ec.zip |
Make VimL code compatible with merged Partial support (#5765)
Closes #5763.
Diffstat (limited to 'runtime/autoload/vimexpect.vim')
-rw-r--r-- | runtime/autoload/vimexpect.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/vimexpect.vim b/runtime/autoload/vimexpect.vim index 16e7d30d6c..0ed888d2a4 100644 --- a/runtime/autoload/vimexpect.vim +++ b/runtime/autoload/vimexpect.vim @@ -140,7 +140,7 @@ endfunction " Job handler that simply forwards lines to the parser. -function! s:JobOutput(id, lines) +function! s:JobOutput(_id, lines, _event) dict call self._parser.feed(a:lines) endfunction |