summaryrefslogtreecommitdiff
path: root/contrib/emacs
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2008-03-07 22:33:26 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2008-03-07 22:33:26 -0800
commit5628a7a309e11c413138291b215a8cecedaddd24 (patch)
tree1273cebf4c951b8c9cec3d7df9e47720abee494a /contrib/emacs
parentMerge branch 'cb/mergetool' (diff)
parentlog/show/whatchanged: introduce format.pretty configuration (diff)
downloadtgif-5628a7a309e11c413138291b215a8cecedaddd24.tar.xz
Merge branch 'dc/format-pretty'
* dc/format-pretty: log/show/whatchanged: introduce format.pretty configuration specify explicit "--pretty=medium" with `git log/show/whatchanged` whatchanged documentation: share description of --pretty with others
Diffstat (limited to 'contrib/emacs')
-rw-r--r--contrib/emacs/git.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/emacs/git.el b/contrib/emacs/git.el
index c9268234a5..4fa853fae7 100644
--- a/contrib/emacs/git.el
+++ b/contrib/emacs/git.el
@@ -1299,7 +1299,7 @@ Return the list of files that haven't been handled."
(let (author-name author-email subject date msg)
(with-temp-buffer
(let ((coding-system (git-get-logoutput-coding-system)))
- (git-call-process-env t nil "log" "-1" commit)
+ (git-call-process-env t nil "log" "-1" "--pretty=medium" commit)
(goto-char (point-min))
(when (re-search-forward "^Author: *\\(.*\\) <\\(.*\\)>$" nil t)
(setq author-name (match-string 1))