aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/emacs
diff options
context:
space:
mode:
authorLawrence Mitchell <wence@gmx.li>2012-06-14 10:38:00 +0100
committerJunio C Hamano <gitster@pobox.com>2012-06-14 10:59:16 -0700
commit32663b22418bb394d71012d17e4954217c02752f (patch)
treeecc090b0b9a52dc6a3675678cc6828d7e9e0ef9b /contrib/emacs
parent0e59a6f6018182e6648789904672b738a944a524 (diff)
downloadgit-32663b22418bb394d71012d17e4954217c02752f.tar.gz
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>
Diffstat (limited to 'contrib/emacs')
-rw-r--r--contrib/emacs/git-blame.el2
1 files changed, 1 insertions, 1 deletions
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))