comparison lisp/gnus/gnus-sum.el @ 110810:07053df95af6

Merge changes made in Gnus trunk. shr.el (shr-render-td): Use a cache for the table rendering function to avoid getting an exponential rendering behaviour in nested tables. shr.el (shr-insert): Rework the line-breaking algorithm. shr.el (shr-insert): Don't leave trailing spaces. shr.el (shr-insert-table): Also insert empty TDs. shr.el (shr-tag-blockquote): Ensure paragraphs after </ul>. gnus-start.el (gnus-get-unread-articles): Require gnus-agent before bidning gnus-agent variables. mm-decode.el (mm-save-part): If given a non-directory result, expand the file name before using to avoid setting mm-default-directory to nil. gnus.el (gnus-carpal): The carpal mode has been removed, but define the variable for backwards compatability. nnimap.el (nnimap-update-info): Remove double setting of high. nnimap.el (nnimap-update-info): Don't ignore groups that have no UIDNEXT. shr.el (require): Require cl when compiling. shr.el (shr-tag-hr): New function.
author Katsumi Yamaoka <yamaoka@jpl.org>
date Thu, 07 Oct 2010 22:26:11 +0000
parents b3be868d9343
children 7aa4fdb60d57
comparison
equal deleted inserted replaced
110809:b3be868d9343 110810:07053df95af6
8684 (children 8684 (children
8685 (if (cdr thread) 8685 (if (cdr thread)
8686 (apply '+ (mapcar 'gnus-summary-limit-children 8686 (apply '+ (mapcar 'gnus-summary-limit-children
8687 (cdr thread))) 8687 (cdr thread)))
8688 0)) 8688 0))
8689 (number (mail-header-number (car thread))) 8689 (number (mail-header-number (car thread)))
8690 score) 8690 score)
8691 (if (and 8691 (if (and
8692 (not (memq number gnus-newsgroup-marked)) 8692 (not (memq number gnus-newsgroup-marked))
8693 (or 8693 (or
8694 ;; If this article is dormant and has absolutely no visible 8694 ;; If this article is dormant and has absolutely no visible
8695 ;; children, then this article isn't visible. 8695 ;; children, then this article isn't visible.
8730 (push (cons number gnus-low-score-mark) 8730 (push (cons number gnus-low-score-mark)
8731 gnus-newsgroup-reads))) 8731 gnus-newsgroup-reads)))
8732 t) 8732 t)
8733 ;; Do the `display' group parameter. 8733 ;; Do the `display' group parameter.
8734 (and gnus-newsgroup-display 8734 (and gnus-newsgroup-display
8735 (let ((gnus-number number)) 8735 (let ((gnus-number number))
8736 (not (funcall gnus-newsgroup-display)))))) 8736 (not (funcall gnus-newsgroup-display))))))
8737 ;; Nope, invisible article. 8737 ;; Nope, invisible article.
8738 0 8738 0
8739 ;; Ok, this article is to be visible, so we add it to the limit 8739 ;; Ok, this article is to be visible, so we add it to the limit
8740 ;; and return 1. 8740 ;; and return 1.
8741 (push number gnus-newsgroup-limit) 8741 (push number gnus-newsgroup-limit)