diff options
author | Kyle Meyer <kyle@kyleam.com> | 2018-12-09 14:43:48 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2018-12-09 14:44:07 -0500 |
commit | fd8a06ca79a2f088a131f3830daee9f944516c50 (patch) | |
tree | 78011f6079e53830bf0433466b6fd06127958e84 | |
parent | 83513ca24c1140c7983e6981e900e4e6607b50e2 (diff) | |
download | emacs.d-fd8a06ca79a2f088a131f3830daee9f944516c50.tar.gz |
mail: Loosen github url regexp
... so that it also matches the text in the "push" emails.
-rw-r--r-- | lisp/km-mail.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/km-mail.el b/lisp/km-mail.el index 8e5e7c9..f054f2a 100644 --- a/lisp/km-mail.el +++ b/lisp/km-mail.el @@ -220,7 +220,7 @@ Tracking System, set '--in-reply-to' to the initial report and (defun km/notmuch-github-url () (and (re-search-forward - (concat "Reply to this email directly or view it on GitHub:\n" + (concat "view it on GitHub:\n" "\\(https://github\.com/[^\n]+\\)$") nil t) (match-string-no-properties 1))) |