Skip to content

Commit

Permalink
git-blame.el: Do not use bare 0 to mean (point-min)
Browse files Browse the repository at this point in the history
Signed-off-by: Lawrence Mitchell <wence@gmx.li>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Lawrence Mitchell authored and Junio C Hamano committed Jun 14, 2012
1 parent 0e59a6f commit 32663b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/emacs/git-blame.el
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 32663b2

Please sign in to comment.