branch: externals/vc-got commit 3391eaf83470d3f9661a62caf01dc84c9a4bc062 Author: Omar Polo <o...@omarpolo.com> Commit: Omar Polo <o...@omarpolo.com>
fix vc-got-incoming docstring * style: don't go over 80 cols and keep the first line as a full sentence. * correct the description: it diffs the *incoming* history, it doesn't consider the edits on the work tree at all! --- vc-got.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vc-got.el b/vc-got.el index ff59b602ab..7ec8c82257 100755 --- a/vc-got.el +++ b/vc-got.el @@ -699,7 +699,8 @@ START-REVISION." (vc-got--log nil nil nil rl)))) (defun vc-got-incoming (buffer remote-location) - "Fill BUFFER with the diff between the REMOTE-LOCATION and the local worktree branch." + "Fill BUFFER with the incoming diff from REMOTE-LOCATION. +That is, the diff between REMOTE-LOCATION and the local repository." (let ((rl (if (or (not remote-location) (string-empty-p remote-location)) (concat "origin/" (vc-got--current-branch)) remote-location))