Do not check Ruby interface when parallel update is not needed

In case Ruby interface is completely broken that simply running
`:ruby require 'thread'` crashes Vim.

Close #564
This commit is contained in:
Junegunn Choi 2016-12-13 12:13:54 +09:00
parent 5bccd9bc98
commit a4aac4cf56
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

View File

@ -955,7 +955,7 @@ function! s:update_impl(pull, force, args) abort
let use_job = s:nvim || s:vim8
let python = (has('python') || has('python3')) && !use_job
let ruby = has('ruby') && !use_job && (v:version >= 703 || v:version == 702 && has('patch374')) && !(s:is_win && has('gui_running')) && s:check_ruby()
let ruby = has('ruby') && !use_job && (v:version >= 703 || v:version == 702 && has('patch374')) && !(s:is_win && has('gui_running')) && threads > 1 && s:check_ruby()
let s:update = {
\ 'start': reltime(),