diff options
Diffstat (limited to 'email')
-rw-r--r-- | email/email.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/email/email.scm b/email/email.scm index 53840db..6ad2d93 100644 --- a/email/email.scm +++ b/email/email.scm @@ -631,9 +631,9 @@ are as defined in RFC5322. For example, (parse-email-address \"Foo <foo@example.org>\") -=> ((name \"Foo\") (address \"foo@example.org\")) +=> ((name . \"Foo\") (address . \"foo@example.org\")) (parse-email-address \"foo@example.org\") -=> ((address \"foo@example.org\"))" +=> ((address . \"foo@example.org\"))" (cond ((string-match "([^<]*)<([^>]*)>" address) => (lambda (match-record) |