From 8626551860829c877899e232e4281334900f4d89 Mon Sep 17 00:00:00 2001 From: Karl Fogel Date: Sat, 16 Jun 2007 01:25:25 +0000 Subject: [PATCH] * thingatpt.el (thing-at-point-email-regexp): Don't require two chars before the "@" in an email address. Andreas Roehler noticed this problem. --- lisp/ChangeLog | 6 ++++++ lisp/thingatpt.el | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ec8ca907ee..e808cf7593 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2007-06-16 Karl Fogel + + * thingatpt.el (thing-at-point-email-regexp): Don't require two + chars before the "@" in an email address. Andreas Roehler noticed + this problem. + 2007-06-15 Karl Fogel * thingatpt.el: Add support for email addresses (`email'). diff --git a/lisp/thingatpt.el b/lisp/thingatpt.el index 0d57091fb0..416812dbbf 100644 --- a/lisp/thingatpt.el +++ b/lisp/thingatpt.el @@ -342,7 +342,7 @@ 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.") -- 2.20.1