comparison lisp/gnus/gnus-cache.el @ 110555:e07971bb896c

Merge changes made in Gnus trunk. gnus.el (gnus-sloppily-equal-method-parameters): Avoid cl.el convenience functions. nnrss.el (nnrss-retrieve-groups): Change to the group before checking its data structures. nnimap.el (nnimap-split-incoming-mail): Fix paren typo in the 'junk handling. starttls.el: (starttls-open-stream): Add autoload cookie. nnimap.el (nnimap-command): Register the last command time so that we can use it for idling NOOPs. nnimap.el: Implement IMAP keepalive. gnus-cache.el (gnus-cache-braid-heads): When braiding heads, don't use the same article number for all the cached articles. nnimap.el (nnimap-update-info): Protect against nil uidnexts. gnus-group.el: Remove the outdated archive group stuff, which no longer works. gnus-group.el, gnus.el: Remove the outdated charter support. gnus-sum.el, gnus-group.el, gnus.el: Remove outdated support for FAQ fetching. gnus-gravatar.el, gravatar.el: New files.
author Katsumi Yamaoka <yamaoka@jpl.org>
date Fri, 24 Sep 2010 22:33:34 +0000
parents f2e111723c3a
children 236342431786
comparison
equal deleted inserted replaced
110554:e49fcbdc458f 110555:e07971bb896c
601 (let ((coding-system-for-read gnus-cache-coding-system) 601 (let ((coding-system-for-read gnus-cache-coding-system)
602 (file-name-coding-system nnmail-pathname-coding-system)) 602 (file-name-coding-system nnmail-pathname-coding-system))
603 (insert-file-contents (gnus-cache-file-name group entry))) 603 (insert-file-contents (gnus-cache-file-name group entry)))
604 (goto-char (point-min)) 604 (goto-char (point-min))
605 (insert "220 ") 605 (insert "220 ")
606 (princ (car cached) (current-buffer)) 606 (princ (pop cached) (current-buffer))
607 (insert " Article retrieved.\n") 607 (insert " Article retrieved.\n")
608 (search-forward "\n\n" nil 'move) 608 (search-forward "\n\n" nil 'move)
609 (delete-region (point) (point-max)) 609 (delete-region (point) (point-max))
610 (forward-char -1) 610 (forward-char -1)
611 (insert ".") 611 (insert ".")