From 19edbf25ef250e79b2cf47e1a28c9bd8c9f361bf Mon Sep 17 00:00:00 2001 From: plugd Date: Thu, 8 Jul 2021 20:12:04 +0200 Subject: [PATCH] Improvements to url regexp. --- lurk.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lurk.el b/lurk.el index 1043775..2f7e15a 100644 --- a/lurk.el +++ b/lurk.el @@ -543,8 +543,8 @@ portion of the source component of the message, as LURK doesn't use this.") (opt (group (: ":" (+ digit)))) (opt (group (: "/" (opt - (* (any alnum "-/.,#:%=&_")) - (any alnum "-/#:%=&_"))))))) + (* (any alnum "-/.,#:%=&_?~")) + (any alnum "-/#:%=&_~"))))))) "Imperfect regex used to find URLs in plain text.") (defun lurk-click-url (button) -- 2.20.1