mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Merge from emacs-23; up to 2010-06-01T01:49:15Z!monnier@iro.umontreal.ca
This commit is contained in:
commit
67ab0163d6
67 changed files with 252 additions and 76 deletions
|
|
@ -4306,7 +4306,7 @@ With prefix argument N moves forward N messages with these labels.
|
|||
|
||||
;;;***
|
||||
|
||||
;;;### (autoloads (rmail-mime) "rmailmm" "rmailmm.el" "3e235bdf4c2e54da06abcdd72e7f7649")
|
||||
;;;### (autoloads (rmail-mime) "rmailmm" "rmailmm.el" "9c0902449733cabd5c7e7d17092a7c69")
|
||||
;;; Generated autoloads from rmailmm.el
|
||||
|
||||
(autoload 'rmail-mime "rmailmm" "\
|
||||
|
|
|
|||
|
|
@ -472,10 +472,11 @@ See `rmail-mime-entity' for the detail."
|
|||
HEADER is a header component of a MIME-entity object (see
|
||||
`rmail-mime-entity')."
|
||||
(with-temp-buffer
|
||||
(let ((last-coding-system-used nil))
|
||||
(let ((buf (current-buffer)))
|
||||
(with-current-buffer rmail-mime-mbox-buffer
|
||||
(let ((rmail-buffer rmail-mime-mbox-buffer)
|
||||
(rmail-view-buffer rmail-mime-view-buffer))
|
||||
(let ((last-coding-system-used nil)
|
||||
(rmail-buffer rmail-mime-mbox-buffer)
|
||||
(rmail-view-buffer buf))
|
||||
(save-excursion
|
||||
(goto-char (aref header 0))
|
||||
(rmail-copy-headers (point) (aref header 1)))))
|
||||
|
|
@ -514,7 +515,9 @@ HEADER is a header component of a MIME-entity object (see
|
|||
((string= transfer-encoding "quoted-printable")
|
||||
(quoted-printable-decode-region pos (point))))))
|
||||
(decode-coding-region pos (point) coding-system)
|
||||
(if (or (not rmail-mime-coding-system) (consp rmail-mime-coding-system))
|
||||
(if (and
|
||||
(or (not rmail-mime-coding-system) (consp rmail-mime-coding-system))
|
||||
(not (eq (coding-system-base coding-system) 'us-ascii)))
|
||||
(setq rmail-mime-coding-system coding-system))
|
||||
(or (bolp) (insert "\n"))))
|
||||
|
||||
|
|
@ -1302,7 +1305,10 @@ attachments as specfied by `rmail-mime-attachment-dirs-alist'."
|
|||
(rmail-mime-find-header-encoding
|
||||
(rmail-mime-entity-header entity)))))
|
||||
(set-buffer-file-coding-system
|
||||
(coding-system-base rmail-mime-coding-system) t t))
|
||||
(if rmail-mime-coding-system
|
||||
(coding-system-base rmail-mime-coding-system)
|
||||
'undecided)
|
||||
t t))
|
||||
;; Decoding failed. ENTITY is an error message. Insert the
|
||||
;; original message body as is, and show warning.
|
||||
(let ((region (with-current-buffer rmail-mime-mbox-buffer
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue