Mercurial > emacs
comparison lisp/gnus/message.el @ 110763:0fe64d68a522
Merge changes made in Gnus trunk.
shr.el: Implement table rendering.
shr.el (shr-make-table): Tweak table generation.
shr.el (shr-make-table): Fix typo.
nnimap.el (nnimap-open-connection): Allow tls as a synonym for ssl.
gnus-util.el (gnus-emacs-completing-read): Mapcar collection to list, for XEmacs.
nnimap.el (nnimap-close-server): Implement.
gnus-salt.el: Remove all gnus-carpal stuff -- it's not useful.
nnir.el (nnir-run-imap): Remove spurious space in search string.
message.el (message-idna-to-ascii-rhs-1): Don't bug out on addresses without @ signs.
gnus-sum.el (gnus-widen-article-window): New variable.
shr.el (browse-url): Required.
shr.el (shr-ensure-paragraph): Don't insert a new newline after empty-ish lines.
shr.el (shr-show-alt-text, shr-browse-image): New commands.
gravatar.el (gravatar-retrieved): kill buffer when retrieved.
shr.el (shr-browse-url, shr-copy-url): New commands.
shr.el (shr-render-td): Protect against too-wide text.
spam-report.el (spam-report-url-ping-plain): Don't query about killing the process.
nnimap.el (nnimap-finish-retrieve-group-infos): Message while waiting for data.
shr.el (shr-tag-blockquote): Ensure paragraph after quote, too.
mml-smime.el: Fix gnus-completing-read usage.
shr.el (shr-get-image-data): Ensure against the cache file missing.
nnimap.el (nnimap-open-connection): Give an error if nnimap-stream is unknown.
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Mon, 04 Oct 2010 22:26:51 +0000 |
parents | 42815c76b976 |
children | 1f25b03df4ad |
comparison
equal
deleted
inserted
replaced
110762:d6e88106c5b8 | 110763:0fe64d68a522 |
---|---|
5734 (dolist (rhs | 5734 (dolist (rhs |
5735 (mm-delete-duplicates | 5735 (mm-delete-duplicates |
5736 (mapcar (lambda (rhs) (or (cadr (split-string rhs "@")) "")) | 5736 (mapcar (lambda (rhs) (or (cadr (split-string rhs "@")) "")) |
5737 (mapcar 'downcase | 5737 (mapcar 'downcase |
5738 (mapcar | 5738 (mapcar |
5739 'cadr | 5739 (lambda (elem) |
5740 (or (cadr elem) | |
5741 "")) | |
5740 (mail-extract-address-components field t)))))) | 5742 (mail-extract-address-components field t)))))) |
5741 ;; Note that `rhs' will be "" if the address does not have | 5743 ;; Note that `rhs' will be "" if the address does not have |
5742 ;; the domain part, i.e., if it is a local user's address. | 5744 ;; the domain part, i.e., if it is a local user's address. |
5743 (setq ace (if (string-match "\\`[[:ascii:]]*\\'" rhs) | 5745 (setq ace (if (string-match "\\`[[:ascii:]]*\\'" rhs) |
5744 rhs | 5746 rhs |