From 5d7da9a94489da0db3b3c7b766606b80fc71becf Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=BCdiger=20Sonderfeld?= Date: Thu, 14 Jun 2012 10:37:58 +0100 Subject: [PATCH] git-blame.el: Do not use goto-line in lisp code MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit goto-line is a user-level command, instead use the lisp-level construct recommended in Emacs documentation. Signed-off-by: RĂ¼diger Sonderfeld Signed-off-by: Lawrence Mitchell Signed-off-by: Junio C Hamano --- contrib/emacs/git-blame.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contrib/emacs/git-blame.el b/contrib/emacs/git-blame.el index d351cfb6e7..3b5d5afce5 100644 --- a/contrib/emacs/git-blame.el +++ b/contrib/emacs/git-blame.el @@ -389,7 +389,8 @@ See also function `git-blame-mode'." (set-buffer git-blame-file) (let ((inhibit-point-motion-hooks t) (inhibit-modification-hooks t)) - (goto-line start-line) + (goto-char (point-min)) + (forward-line (1- start-line)) (let* ((start (point)) (end (progn (forward-line num-lines) (point))) (ovl (make-overlay start end)) -- 2.11.4.GIT