diff options
author | Xinglu Chen <public@yoctocell.xyz> | 2021-01-26 08:51:00 +0100 |
---|---|---|
committer | Xinglu Chen <public@yoctocell.xyz> | 2021-01-26 08:51:07 +0100 |
commit | 325d127ef741337767643b329957c77d0e432c6d (patch) | |
tree | 55d1b81de0fb38da315fbe1ecce62d6f41ff6755 | |
parent | d8c4eb8434d8eb0eda52df323165a4e3e79580ff (diff) |
Minor corrections
Thank you Protesilaos for this patch.
-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)) |