diff options
author | Lawrence Mitchell <wence@gmx.li> | 2012-06-14 10:38:00 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-06-14 10:59:16 -0700 |
commit | 32663b22418bb394d71012d17e4954217c02752f (patch) | |
tree | ecc090b0b9a52dc6a3675678cc6828d7e9e0ef9b | |
parent | 0e59a6f6018182e6648789904672b738a944a524 (diff) | |
download | git-32663b22418bb394d71012d17e4954217c02752f.tar.gz git-32663b22418bb394d71012d17e4954217c02752f.tar.xz |
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>
-rw-r--r-- | contrib/emacs/git-blame.el | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |