+2002-12-04 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * rfc2047.el (rfc2047-decode-region): Remove newlines between
+ decoded words.
+
2002-12-03 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
* gnus.el (fboundp): After loading mm-util, make sure it was the
* gnus-art.el (gnus-inhibit-mime-unbuttonizing): Moved here from
gnus-sum. Made into a user option.
- * gnus-sum.el (gnus-simplify-ignored-prefixes)
- (gnus-summary-mark-article-as-unread)
+ * gnus-sum.el (gnus-simplify-ignored-prefixes)
+ (gnus-summary-mark-article-as-unread)
2002-11-29 ShengHuo ZHU <zsh@cs.rochester.edu>
* nnmail.el (nnmail-split, nnmail-process-unix-mail-format): Typos.
- * nnimap.el:
+ * nnimap.el:
(nnimap-split-rule, nnimap-find-minmax-uid): Typos.
* mm-encode.el (mm-safer-encoding): Typo.
* gnus-topic.el (gnus-topic-sort-topics): Typo.
- * gnus-sum.el (gnus-summary-article-number)
- (gnus-summary-read-group-1, gnus-summary-mark-article)
+ * gnus-sum.el (gnus-summary-article-number)
+ (gnus-summary-read-group-1, gnus-summary-mark-article)
(gnus-summary-fetch-faq, gnus-refer-article-methods): Typos.
* gnus-mule.el (gnus-mule-add-group): Typo.
* flow-fill.el: Typo.
2002-11-19 Stefan Monnier <monnier@cs.yale.edu>
-
+
* binhex.el (binhex-decode-region): Don't hardcode point-min == 1.
-
+
2002-11-29 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
* gnus-sum.el (gnus-simplify-ignored-prefixes)
* nnimap.el (nnimap-request-expire-articles): Compress sequence
before storing \Deleted mark on expired articles.
-2002-11-17 Shenghuo Zhu <zsh@cs.rochester.edu>
- Trivial patch from Markus Rost <rost@math.ohio-state.edu>
+2002-11-17 Shenghuo Zhu <zsh@cs.rochester.edu>
+ Trivial patch from Markus Rost <rost@math.ohio-state.edu>
* gnus-sum.el (gnus-summary-goto-unread): Doc fix - escape open
parens in column 0.
(prog1
(match-string 0)
(delete-region (match-beginning 0) (match-end 0)))))
+ ;; Remove newlines between decoded words. Though such things
+ ;; must not be essentially there.
+ (save-restriction
+ (narrow-to-region e (point))
+ (goto-char e)
+ (while (re-search-forward "[\n\r]+" nil t)
+ (replace-match " "))
+ (goto-char (point-max)))
(when (and (mm-multibyte-p)
mail-parse-charset
(not (eq mail-parse-charset 'us-ascii))