diff options
-rw-r--r-- | git-email.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git-email.el b/git-email.el index d1334a1..4af0ecd 100644 --- a/git-email.el +++ b/git-email.el @@ -107,7 +107,7 @@ not set, the 'to' address will be empty." (defcustom git-email-revision-parser #'git-email--parse-revision "Function for parsing the output of ‘git-email-revision-command’." :type 'symbol - :group git-email) + :group 'git-email) (defcustom git-email-get-revision-functions '(git-email--log-get-revision) "List of functions to get the base commit for 'git format-patch'. @@ -291,7 +291,7 @@ them into the message buffer." (git-email--parse-revision (completing-read "Revision: " sorted-revs)))) (defun git-email--parse-revision (rev) - "Return only the revision hash from REV + "Return only the revision hash from REV. This parses the output of ‘git-email--minibuffer-get-revision’." (substring rev 0 7)) |