From 32663b22418bb394d71012d17e4954217c02752f Mon Sep 17 00:00:00 2001 From: Lawrence Mitchell Date: Thu, 14 Jun 2012 10:38:00 +0100 Subject: [PATCH] git-blame.el: Do not use bare 0 to mean (point-min) Signed-off-by: Lawrence Mitchell Signed-off-by: Junio C Hamano --- contrib/emacs/git-blame.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/emacs/git-blame.el b/contrib/emacs/git-blame.el index 8ebd985484..cf485a1a9d 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)) -- 2.11.4.GIT