From: Nikolaj Schumacher Date: Mon, 30 Jun 2008 10:08:16 +0000 (+0200) Subject: Don't cut off last character of commit descriptions. X-Git-Tag: v1.6.0-rc1~81 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=c79cc2e59672fa03985f27ecdbea84e06ea5358f;p=git.git Don't cut off last character of commit descriptions. This should have been part of 24a2293 (git-blame.el: show the when, who and what in the minibuffer., 2008-02-12), that changed from using --pretty=oneline to --pretty=format:... without terminating newline. Acked-by: David Kågedal Signed-off-by: Junio C Hamano --- diff --git a/contrib/emacs/git-blame.el b/contrib/emacs/git-blame.el index 9f92cd250..4fa70c5ad 100644 --- a/contrib/emacs/git-blame.el +++ b/contrib/emacs/git-blame.el @@ -381,7 +381,7 @@ See also function `git-blame-mode'." "log" "-1" (concat "--pretty=" git-blame-log-oneline-format) hash) - (buffer-substring (point-min) (1- (point-max))))) + (buffer-substring (point-min) (point-max)))) (defvar git-blame-last-identification nil) (make-variable-buffer-local 'git-blame-last-identification)