diff options
| author | Miles Bader | 2006-12-01 11:53:31 +0000 |
|---|---|---|
| committer | Miles Bader | 2006-12-01 11:53:31 +0000 |
| commit | 5538c331d1b0e790c1c11f22ba7ebfa5387d9d23 (patch) | |
| tree | 674e52bf2619898a46788e8147778f7a416e19eb | |
| parent | 7ad0480294f55d015df24803a14a6bf743285a68 (diff) | |
| download | emacs-5538c331d1b0e790c1c11f22ba7ebfa5387d9d23.tar.gz emacs-5538c331d1b0e790c1c11f22ba7ebfa5387d9d23.zip | |
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 <yamaoka@jpl.org>
* lisp/gnus/mml2015.el (mml2015-pgg-clear-verify): Replace encode-coding-string
with mm-encode-coding-string.
2006-11-29 Katsumi Yamaoka <yamaoka@jpl.org>
* 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
| -rw-r--r-- | lisp/gnus/ChangeLog | 10 | ||||
| -rw-r--r-- | lisp/gnus/mml2015.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/nneething.el | 2 |
3 files changed, 12 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 68c82da1c6b..787a5d58c6f 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2006-11-30 Katsumi Yamaoka <yamaoka@jpl.org> | ||
| 2 | |||
| 3 | * mml2015.el (mml2015-pgg-clear-verify): Replace encode-coding-string | ||
| 4 | with mm-encode-coding-string. | ||
| 5 | |||
| 6 | 2006-11-29 Katsumi Yamaoka <yamaoka@jpl.org> | ||
| 7 | |||
| 8 | * nneething.el (nneething-decode-file-name): Replace | ||
| 9 | decode-coding-string with mm-decode-coding-string. | ||
| 10 | |||
| 1 | 2006-11-24 Juanma Barranquero <lekktu@gmail.com> | 11 | 2006-11-24 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 12 | ||
| 3 | * gnus-agent.el (gnus-agent-expire-unagentized-dirs) | 13 | * gnus-agent.el (gnus-agent-expire-unagentized-dirs) |
diff --git a/lisp/gnus/mml2015.el b/lisp/gnus/mml2015.el index 591ef647678..6c58272509e 100644 --- a/lisp/gnus/mml2015.el +++ b/lisp/gnus/mml2015.el | |||
| @@ -785,7 +785,7 @@ | |||
| 785 | (if (condition-case err | 785 | (if (condition-case err |
| 786 | (prog1 | 786 | (prog1 |
| 787 | (mm-with-unibyte-buffer | 787 | (mm-with-unibyte-buffer |
| 788 | (insert (encode-coding-string text coding-system)) | 788 | (insert (mm-encode-coding-string text coding-system)) |
| 789 | (pgg-verify-region (point-min) (point-max) nil t)) | 789 | (pgg-verify-region (point-min) (point-max) nil t)) |
| 790 | (goto-char (point-min)) | 790 | (goto-char (point-min)) |
| 791 | (while (search-forward "\r\n" nil t) | 791 | (while (search-forward "\r\n" nil t) |
diff --git a/lisp/gnus/nneething.el b/lisp/gnus/nneething.el index 92a62d12386..4b5f1871aa3 100644 --- a/lisp/gnus/nneething.el +++ b/lisp/gnus/nneething.el | |||
| @@ -303,7 +303,7 @@ included.") | |||
| 303 | (setq buf (cons (string (string-to-number (match-string 1 file) 16)) | 303 | (setq buf (cons (string (string-to-number (match-string 1 file) 16)) |
| 304 | (cons (substring file pos (match-beginning 0)) buf)) | 304 | (cons (substring file pos (match-beginning 0)) buf)) |
| 305 | pos (match-end 0))) | 305 | pos (match-end 0))) |
| 306 | (decode-coding-string | 306 | (mm-decode-coding-string |
| 307 | (apply (function concat) | 307 | (apply (function concat) |
| 308 | (nreverse (cons (substring file pos) buf))) | 308 | (nreverse (cons (substring file pos) buf))) |
| 309 | (or coding-system nnmail-pathname-coding-system)))) | 309 | (or coding-system nnmail-pathname-coding-system)))) |