Eliminate trailing space in :Gpush

This commit is contained in:
Tim Pope 2017-04-23 22:32:01 -04:00
parent b2665cc650
commit 0d281a2607

View File

@ -1641,7 +1641,7 @@ function! s:Dispatch(bang, args)
try try
let b:current_compiler = 'git' let b:current_compiler = 'git'
let &l:errorformat = s:common_efm let &l:errorformat = s:common_efm
let &l:makeprg = s:git_command() . ' ' . a:args let &l:makeprg = s:git_command() . (empty(a:args) ? '' : ' ' . a:args)
execute cd fnameescape(s:repo().tree()) execute cd fnameescape(s:repo().tree())
if exists(':Make') == 2 if exists(':Make') == 2
noautocmd Make noautocmd Make