From: Lars Magne Ingebrigtsen Date: Fri, 1 Oct 2010 22:04:26 +0000 (+0200) Subject: Do babyl before mime-parts. X-Git-Url: https://cgit.sxemacs.org/?p=gnus;a=commitdiff_plain;h=148b7a5fbdfdd8dcc096b7b74f2b449e07857b50;hp=6cbf58817f9adb71e0c3557400e31ff7afdc8e31 Do babyl before mime-parts. Suggested by Jason Eisner. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b9a36935f..837845c2d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2010-10-01 Lars Magne Ingebrigtsen + * nndoc.el (nndoc-type-alist): Do babyl before mime-parts. Suggested + by Jason Eisner. + * gnus-async.el (gnus-async-delete-prefetched-entry): Remove from hash table, too. Suggested by Stefan Wiens. (gnus-async-prefetched-article-entry): Use intern-soft to avoid growing diff --git a/lisp/nndoc.el b/lisp/nndoc.el index 588eeb116..46d775a34 100644 --- a/lisp/nndoc.el +++ b/lisp/nndoc.el @@ -74,14 +74,14 @@ from the document.") (mbox (article-begin-function . nndoc-mbox-article-begin) (body-end-function . nndoc-mbox-body-end)) - (mime-parts - (generate-head-function . nndoc-generate-mime-parts-head) - (article-transform-function . nndoc-transform-mime-parts)) (babyl (article-begin . "\^_\^L *\n") (body-end . "\^_") (body-begin-function . nndoc-babyl-body-begin) (head-begin-function . nndoc-babyl-head-begin)) + (mime-parts + (generate-head-function . nndoc-generate-mime-parts-head) + (article-transform-function . nndoc-transform-mime-parts)) (exim-bounce (article-begin . "^------ This is a copy of the message, including all the headers. ------\n\n") (body-end-function . nndoc-exim-bounce-body-end-function))