From: Philip Kaludercic Date: Sun, 3 Dec 2023 12:49:07 +0000 (+0100) Subject: Add slashes to 'thing-at-point-email-regexp' X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ff20898dad8825fb39883ca3f09f829528291943;p=emacs.git Add slashes to 'thing-at-point-email-regexp' * lisp/thingatpt.el (thing-at-point-email-regexp): Allow for a (thing-at-point 'email) query to match addresses with slashes, as used by Sourcehut. (Bug#67600) --- diff --git a/lisp/thingatpt.el b/lisp/thingatpt.el index 88efbf73beb..80dc5ee60b7 100644 --- a/lisp/thingatpt.el +++ b/lisp/thingatpt.el @@ -652,7 +652,7 @@ back from point." ;; Email addresses (defvar thing-at-point-email-regexp - "?" + "?" "A regular expression probably matching an email address. This does not match the real name portion, only the address, optionally with angle brackets.")