From 79c1c8e452dbc50d6a9db183af539f56243577c0 Mon Sep 17 00:00:00 2001 From: djcb Date: Tue, 5 Mar 2013 07:18:17 -0800 Subject: [PATCH] * mu: fix detection of urls with diacritics --- mu4e/mu4e-view.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mu4e/mu4e-view.el b/mu4e/mu4e-view.el index bb148abb..455fe440 100644 --- a/mu4e/mu4e-view.el +++ b/mu4e/mu4e-view.el @@ -127,7 +127,7 @@ This is to determine what is the parent docid for embedded message extracted at some path.") (defconst mu4e~view-url-regexp - "\\(\\(https?\\://\\|mailto:\\)[-+a-zA-Z0-9.?_$%/+&#@!*~,:;=/()]+\\)" + "\\(\\(https?\\://\\|mailto:\\)[-+\[:alnum:\].?_$%/+&#@!*~,:;=/()]+\\)" "Regexp that matches http:/https:/mailto: URLs; match-string 1 will contain the matched URL, if any.")