aboutsummaryrefslogtreecommitdiff
path: root/git-email.el
diff options
context:
space:
mode:
Diffstat (limited to 'git-email.el')
-rw-r--r--git-email.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/git-email.el b/git-email.el
index c81e647..65e6c6c 100644
--- a/git-email.el
+++ b/git-email.el
@@ -104,6 +104,9 @@ in you git config. If the variable is not set, the 'to' address will be empty."
:type 'int
:group 'git-email)
+(defface git-email-revision-face '((t :inherit font-lock-comment-face))
+ "Face used for the revision when selecting from the minibuffer.")
+
(defcustom git-email-apply-patch-function
'git-email--shell-command-on-body
"Function that executes a shell command on the body of the message.
@@ -234,7 +237,7 @@ If no marks are found, return the filename at point."
(propertize
(replace-regexp-in-string "\\([a-f0-9]+\\) .*$"
"\\1" rev)
- 'face 'log-view-commit-body)
+ 'face 'git-email-revision-face)
(propertize
(replace-regexp-in-string "[a-f0-9]+ \\(.*$\\)"
"\\1" rev)