Fix dropped quote of entries

This commit is contained in:
yasuda
2023-03-07 11:05:28 +09:00
committed by Tim Pope
parent 01964fa859
commit c9c08ff9ef

View File

@@ -2922,7 +2922,7 @@ function! fugitive#BufReadStatus(...) abort
let unpushed_push = s:QueryLogRange(push_ref ==# pull_ref ? '' : push_ref, head) let unpushed_push = s:QueryLogRange(push_ref ==# pull_ref ? '' : push_ref, head)
if get(props, 'branch.ab') =~# '^+0 ' if get(props, 'branch.ab') =~# '^+0 '
let unpushed_pull = {'error': 0, 'overflow': 0, entries: []} let unpushed_pull = {'error': 0, 'overflow': 0, 'entries': []}
else else
let unpushed_pull = s:QueryLogRange(pull_ref, head) let unpushed_pull = s:QueryLogRange(pull_ref, head)
endif endif