From: Lawrence Mitchell Date: Thu, 14 Jun 2012 09:38:00 +0000 (+0100) Subject: git-blame.el: Do not use bare 0 to mean (point-min) X-Git-Tag: v1.7.12-rc0~81^2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=32663b22418bb394d71012d17e4954217c02752f;p=git.git git-blame.el: Do not use bare 0 to mean (point-min) Signed-off-by: Lawrence Mitchell Signed-off-by: Junio C Hamano --- diff --git a/contrib/emacs/git-blame.el b/contrib/emacs/git-blame.el index 8ebd98548..cf485a1a9 100644 --- a/contrib/emacs/git-blame.el +++ b/contrib/emacs/git-blame.el @@ -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))