provider#clear_stderr: Use remove() not delete() to update s:stderr

Ref #7184
This commit is contained in:
James McCoy 2017-08-18 12:31:43 -04:00
parent 5b32bce73c
commit 3acbb490de

View File

@ -10,7 +10,7 @@ function! provider#stderr_collector(chan_id, data, event) dict
endfunction
function! provider#clear_stderr(chan_id)
silent! call delete(s:stderr, a:chan_id)
silent! call remove(s:stderr, a:chan_id)
endfunction
function! provider#get_stderr(chan_id)