summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonan Waide <waider@waider.ie>2000-08-19 09:46:12 +0000
committerRonan Waide <waider@waider.ie>2000-08-19 09:46:12 +0000
commitf789a91a20b49d446c8573d062d14a4c05e78454 (patch)
tree06ecb21d41674f2f721a1b1b1e9ca97a49884938
parentbd96bd5670748129709f217b5e2ffb57dc388731 (diff)
Rearrange Lastname, Firstname even if it's not in quotes.
-rw-r--r--lisp/bbdb-snarf.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/bbdb-snarf.el b/lisp/bbdb-snarf.el
index c7da8ad..3cecd3a 100644
--- a/lisp/bbdb-snarf.el
+++ b/lisp/bbdb-snarf.el
@@ -421,7 +421,7 @@ capitalize words and change order of names when separated by a comma."
(bbdb-snarf-nice-real-name (match-string 1 adstring)) 2)
;; "name" <address>
("\"\\([^\"]*\\)\"\\s-*<\\([^>]+\\)>"
- 1 2)
+ (bbdb-snarf-nice-real-name (match-string 1 adstring)) 2)
;; name <address>
("\\(\\b[^<\",]*\\b\\)\\s-*<\\([^>]+\\)>"
1 2)