From 3375a95f2436bbc1a9a25f7dcba506a547f5321c Mon Sep 17 00:00:00 2001 From: Sean Allred Date: Mon, 28 Nov 2022 04:47:41 -0600 Subject: [PATCH] Whitespace fix Allow aggressive-indent-mode to do its thing. --- mu4e/mu4e-helpers.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mu4e/mu4e-helpers.el b/mu4e/mu4e-helpers.el index 1da31197..aae37874 100644 --- a/mu4e/mu4e-helpers.el +++ b/mu4e/mu4e-helpers.el @@ -465,8 +465,8 @@ http://cr.yp.to/proto/maildir.html." If there is not e-mail address at point, do nothing." (interactive) (let* ((thing (and (thing-at-point 'email) - (string-trim (thing-at-point 'email 'no-props) "<" ">"))) - (thing (or thing (thing-at-point 'url 'no-props)))) + (string-trim (thing-at-point 'email 'no-props) "<" ">"))) + (thing (or thing (thing-at-point 'url 'no-props)))) (when thing (kill-new thing) (mu4e-message "Copied '%s' to kill-ring" thing))))