(rfc822/extract-address-components): Use function
authormorioka <morioka>
Wed, 28 Aug 1996 20:44:25 +0000 (20:44 +0000)
committermorioka <morioka>
Wed, 28 Aug 1996 20:44:25 +0000 (20:44 +0000)
`std11-parse-address-string'.

tl-822.el

index 0a52c08..6764cac 100644 (file)
--- a/tl-822.el
+++ b/tl-822.el
@@ -30,7 +30,7 @@
 
 
 (defconst rfc822/RCS-ID
-  "$Id: tl-822.el,v 7.56 1996-08-28 20:32:07 morioka Exp $")
+  "$Id: tl-822.el,v 7.57 1996-08-28 20:44:25 morioka Exp $")
 (defconst rfc822/version (get-version-string rfc822/RCS-ID))
 
 
           (or phrase comment)
           ))))
 
-(defun rfc822/extract-address-components (str)
-  "Extract full name and canonical address from STR.
+(defun rfc822/extract-address-components (string)
+  "Extract full name and canonical address from STRING.
 Returns a list of the form (FULL-NAME CANONICAL-ADDRESS).
 If no name can be extracted, FULL-NAME will be nil. [tl-822.el]"
-  (let* ((structure (car
-                     (rfc822/parse-address
-                      (rfc822/lexical-analyze str)
-                      )))
+  (let* ((structure (car (std11-parse-address-string str)))
          (phrase  (rfc822/full-name-string structure))
          (address (rfc822/address-string structure))
          )