Fix double "fugitive:" in error message

This commit is contained in:
Tim Pope
2021-04-06 22:51:29 -04:00
parent b4255d6679
commit 50b57ba400

View File

@@ -3869,7 +3869,7 @@ endfunction
function! s:StageApply(info, reverse, extra) abort function! s:StageApply(info, reverse, extra) abort
if a:info.status ==# 'R' if a:info.status ==# 'R'
call s:throw('fugitive: patching renamed file not yet supported') throw 'fugitive: patching renamed file not yet supported'
endif endif
let cmd = ['apply', '-p0', '--recount'] + a:extra let cmd = ['apply', '-p0', '--recount'] + a:extra
let info = a:info let info = a:info