From: morioka Date: Tue, 3 Sep 1996 09:22:23 +0000 (+0000) Subject: (std11-extract-address-components): unfold. X-Git-Tag: XEmacs-20_3-b27-viet~24 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=a151c32811bbf3bb0d9a5af06f2c9b5fdc208fc7;p=elisp%2Fmu-cite.git (std11-extract-address-components): unfold. --- diff --git a/std11.el b/std11.el index ae3470e..c13f545 100644 --- a/std11.el +++ b/std11.el @@ -4,7 +4,7 @@ ;; Author: MORIOKA Tomohiko ;; Keywords: mail, news, RFC 822, STD 11 -;; Version: $Id: std11.el,v 0.26 1996-09-02 15:47:29 morioka Exp $ +;; Version: $Id: std11.el,v 0.27 1996-09-03 09:22:23 morioka Exp $ ;; This file is part of MU (Message Utilities). @@ -271,7 +271,8 @@ represents addr-spec of RFC 822. [std11.el]" "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. [std11.el]" - (let* ((structure (car (std11-parse-address-string string))) + (let* ((structure (car (std11-parse-address-string + (std11-unfold-string string)))) (phrase (std11-full-name-string structure)) (address (std11-address-string structure)) )