comparison lisp/gnus/mml.el @ 60161:b070535d2416

Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-111 Merge from gnus--rel--5.10 Patches applied: * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-17 - miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-19 Update from CVS * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-20 Merge from emacs--cvs-trunk--0 * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-21 More work on moving images to etc/images * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-22 Update from CVS * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-23 Fix errors with image-file installation 2005-02-19 Katsumi Yamaoka <yamaoka@jpl.org> * lisp/gnus/gnus-msg.el (gnus-copy-article-buffer): Quote decoded words containing special characters. * lisp/gnus/gnus-sum.el (gnus-summary-edit-article): Ditto. * lisp/gnus/mml.el (mime-to-mml): Ditto. * lisp/gnus/rfc2047.el (rfc2047-encode-parameter): Use ietf-drums-tspecials. (rfc2047-quote-decoded-words-containing-tspecials): New variable. (rfc2047-decode-region): Quote decoded words containing special characters when rfc2047-quote-decoded-words-containing-tspecials is non-nil. 2005-02-16 Teodor Zlatanov <tzz@lifelogs.com> * lisp/gnus/gnus-registry.el (gnus-registry-delete-group): minor bug fix * lisp/gnus/gnus.el (gnus-install-group-spam-parameters): Doc fix. 2005-02-15 Simon Josefsson <jas@extundo.com> * lisp/gnus/nnimap.el (nnimap-debug): Doc fix. * lisp/gnus/imap.el (imap-debug): Doc fix. 2005-02-14 Reiner Steib <Reiner.Steib@gmx.de> * lisp/gnus/gnus-group.el (gnus-group-make-doc-group): Mention prefix argument in doc string. Make query for type more clear.
author Miles Bader <miles@gnu.org>
date Sat, 19 Feb 2005 13:24:16 +0000
parents aac0a33f5772
children 18a818a2ee7c bf0d492ea2d5
comparison
equal deleted inserted replaced
60160:1100781377df 60161:b070535d2416
708 "Translate the current buffer (which should be a message) into MML. 708 "Translate the current buffer (which should be a message) into MML.
709 If HANDLES is non-nil, use it instead reparsing the buffer." 709 If HANDLES is non-nil, use it instead reparsing the buffer."
710 ;; First decode the head. 710 ;; First decode the head.
711 (save-restriction 711 (save-restriction
712 (message-narrow-to-head) 712 (message-narrow-to-head)
713 (mail-decode-encoded-word-region (point-min) (point-max))) 713 (let ((rfc2047-quote-decoded-words-containing-tspecials t))
714 (mail-decode-encoded-word-region (point-min) (point-max))))
714 (unless handles 715 (unless handles
715 (setq handles (mm-dissect-buffer t))) 716 (setq handles (mm-dissect-buffer t)))
716 (goto-char (point-min)) 717 (goto-char (point-min))
717 (search-forward "\n\n" nil t) 718 (search-forward "\n\n" nil t)
718 (delete-region (point) (point-max)) 719 (delete-region (point) (point-max))