Re: [PATCH] Don't cut off last character of commit descriptions.
From: David Kågedal <hidden>
Date: 2016-06-15 22:44:51
Nikolaj Schumacher [off-list ref] writes:
quoted hunk
From d485d9c86cba49671b74c7c1571a6ad7ec6d09b6 Mon Sep 17 00:00:00 2001 From: Nikolaj Schumacher <redacted> Date: Mon, 30 Jun 2008 12:06:01 +0200 Subject: [PATCH] Don't cut off last character of commit descriptions. --- 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 9f92cd2..4fa70c5 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)
Yes, this should have been part of 24a2293ad35d567530048f0d2b0d11e0012af26d git-blame.el: show the when, who and what in the minibuffer. that changed from using --pretty=oneline to --pretty=format:... without terminating newline. -- David Kågedal