From 0cb3f80de0d464c0c8a1c2963396bfcdb00dedab Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20K=C3=A5gedal?= Date: Tue, 25 May 2010 15:44:15 +0200 Subject: [PATCH] git-blame.el: Add (require 'format-spec) c5022f57 (git-blame.el: Change how blame information is shown, 2009-09-29) taught the "M-x git-blame" mode to format its output in a more interesting way, making use of the format-spec function. format-spec is included in Emacs 23 and is a useful function. Older emacsen can get it from Gnus. In all emacsen, we need to 'require it before use to avoid warnings: git-blame.el:483:1:Warning: the function `format-spec' is not known to be defined. Reported-by: Sergei Organov Reported-by: Kevin Ryde Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- contrib/emacs/git-blame.el | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/emacs/git-blame.el b/contrib/emacs/git-blame.el index 7f4c792978..d351cfb6e7 100644 --- a/contrib/emacs/git-blame.el +++ b/contrib/emacs/git-blame.el @@ -79,6 +79,7 @@ ;;; Code: (eval-when-compile (require 'cl)) ; to use `push', `pop' +(require 'format-spec) (defface git-blame-prefix-face '((((background dark)) (:foreground "gray" -- 2.11.4.GIT