# HG changeset patch # User Miles Bader # Date 1164974011 0 # Node ID b8fb10afdb2d6631839e940ea7db3fe6ec671c16 # Parent 7318aed68fe7c0ed66ce939f307b56920440e110 Merge from gnus--rel--5.10 Patches applied: * gnus--rel--5.10 (patch 169-170) - Merge from emacs--devo--0 - Update from CVS 2006-11-30 Katsumi Yamaoka * lisp/gnus/mml2015.el (mml2015-pgg-clear-verify): Replace encode-coding-string with mm-encode-coding-string. 2006-11-29 Katsumi Yamaoka * lisp/gnus/nneething.el (nneething-decode-file-name): Replace decode-coding-string with mm-decode-coding-string. Revision: emacs@sv.gnu.org/emacs--devo--0--patch-534 diff -r 7318aed68fe7 -r b8fb10afdb2d lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Fri Dec 01 00:47:25 2006 +0000 +++ b/lisp/gnus/ChangeLog Fri Dec 01 11:53:31 2006 +0000 @@ -1,3 +1,13 @@ +2006-11-30 Katsumi Yamaoka + + * mml2015.el (mml2015-pgg-clear-verify): Replace encode-coding-string + with mm-encode-coding-string. + +2006-11-29 Katsumi Yamaoka + + * nneething.el (nneething-decode-file-name): Replace + decode-coding-string with mm-decode-coding-string. + 2006-11-24 Juanma Barranquero * gnus-agent.el (gnus-agent-expire-unagentized-dirs) diff -r 7318aed68fe7 -r b8fb10afdb2d lisp/gnus/mml2015.el --- a/lisp/gnus/mml2015.el Fri Dec 01 00:47:25 2006 +0000 +++ b/lisp/gnus/mml2015.el Fri Dec 01 11:53:31 2006 +0000 @@ -785,7 +785,7 @@ (if (condition-case err (prog1 (mm-with-unibyte-buffer - (insert (encode-coding-string text coding-system)) + (insert (mm-encode-coding-string text coding-system)) (pgg-verify-region (point-min) (point-max) nil t)) (goto-char (point-min)) (while (search-forward "\r\n" nil t) diff -r 7318aed68fe7 -r b8fb10afdb2d lisp/gnus/nneething.el --- a/lisp/gnus/nneething.el Fri Dec 01 00:47:25 2006 +0000 +++ b/lisp/gnus/nneething.el Fri Dec 01 11:53:31 2006 +0000 @@ -303,7 +303,7 @@ (setq buf (cons (string (string-to-number (match-string 1 file) 16)) (cons (substring file pos (match-beginning 0)) buf)) pos (match-end 0))) - (decode-coding-string + (mm-decode-coding-string (apply (function concat) (nreverse (cons (substring file pos) buf))) (or coding-system nnmail-pathname-coding-system))))