aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2017-08-26 15:06:48 -0400
committerGitHub <noreply@github.com>2017-08-26 15:06:48 -0400
commit5566f30006a73c30dfbdeece2e08830826d28aa4 (patch)
tree7f3091f1b66b1b0eaa240db0186575940c33c86c
parentf612e99db5a66bd52c0ab050f734b86e9d8128aa (diff)
parentffdddcd93dda3dd6f9663ff0d8a3115b9e0eae14 (diff)
downloadrneovim-5566f30006a73c30dfbdeece2e08830826d28aa4.tar.gz
rneovim-5566f30006a73c30dfbdeece2e08830826d28aa4.tar.bz2
rneovim-5566f30006a73c30dfbdeece2e08830826d28aa4.zip
Merge pull request #7218 from jamessan/stderr_collector-fix
provider: Remove dict attribute from stderr_collector
-rw-r--r--runtime/autoload/provider.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/provider.vim b/runtime/autoload/provider.vim
index 7439b638c2..e6514f5ba8 100644
--- a/runtime/autoload/provider.vim
+++ b/runtime/autoload/provider.vim
@@ -2,7 +2,7 @@
let s:stderr = {}
-function! provider#stderr_collector(chan_id, data, event) dict
+function! provider#stderr_collector(chan_id, data, event)
let stderr = get(s:stderr, a:chan_id, [''])
let stderr[-1] .= a:data[0]
call extend(stderr, a:data[1:])