Browse Source

git-blame.el: Do not use bare 0 to mean (point-min)

Signed-off-by: Lawrence Mitchell <wence@gmx.li>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Lawrence Mitchell 13 years ago committed by Junio C Hamano
parent
commit
32663b2241
  1. 2
      contrib/emacs/git-blame.el

2
contrib/emacs/git-blame.el

@ -341,7 +341,7 @@ See also function `git-blame-mode'." @@ -341,7 +341,7 @@ See also function `git-blame-mode'."
(save-excursion
(goto-char (process-mark proc))
(insert-before-markers str)
(goto-char 0)
(goto-char (point-min))
(unless in-blame-filter
(let ((more t)
(in-blame-filter t))

Loading…
Cancel
Save