From: yamaoka Date: Tue, 9 Mar 2004 22:17:18 +0000 (+0000) Subject: Synch to No Gnus 200403091457. X-Git-Tag: t-gnus-6_17_4-quimby-~1020 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=ae032c94c4687bae21e622c130d37c8b855c0c3a;hp=e4e6df4a4b332a84bb6328ab72b789c91b6a2245;p=elisp%2Fgnus.git- Synch to No Gnus 200403091457. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index af6b041..401bcac 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,12 @@ +2004-03-09 Kevin Greiner + + * gnus-agent.el (gnus-agent-read-local): Bind + nnheader-file-coding-system to gnus-agent-file-coding-system to + avoid the implicit assumption that they will always be equal. + (gnus-agent-save-local): Bind buffer-file-coding-system, not + coding-system-for-write, as the with-temp-file macro first prints + to a buffer then saves the buffer. + 2004-03-09 Katsumi Yamaoka * gnus-art.el (gnus-article-edit-part): New function. diff --git a/lisp/gnus-agent.el b/lisp/gnus-agent.el index 0119432..5fd0910 100644 --- a/lisp/gnus-agent.el +++ b/lisp/gnus-agent.el @@ -1876,7 +1876,8 @@ modified) original contents, they are first saved to their own file." (line 1)) (with-temp-buffer (condition-case nil - (nnheader-insert-file-contents file) + (let ((nnheader-file-coding-system gnus-agent-file-coding-system)) + (nnheader-insert-file-contents file)) (file-error)) (goto-char (point-min)) @@ -1919,27 +1920,27 @@ modified) original contents, they are first saved to their own file." ;; NOTE: gnus-command-method is used within gnus-agent-lib-file. (dest (gnus-agent-lib-file "local"))) (gnus-make-directory (gnus-agent-lib-file "")) - (with-temp-file dest - (let ((gnus-command-method (symbol-value (intern "+method" my-obarray))) - (file-name-coding-system nnmail-pathname-coding-system) - (coding-system-for-write - gnus-agent-file-coding-system) - print-level print-length item article - (standard-output (current-buffer))) - (mapatoms (lambda (symbol) - (cond ((not (boundp symbol)) - nil) - ((member (symbol-name symbol) '("+dirty" "+method")) - nil) - (t - (prin1 symbol) - (let ((range (symbol-value symbol))) - (princ " ") - (princ (car range)) - (princ " ") - (princ (cdr range)) - (princ "\n"))))) - my-obarray))))))) + + (let ((buffer-file-coding-system gnus-agent-file-coding-system)) + (with-temp-file dest + (let ((gnus-command-method (symbol-value (intern "+method" my-obarray))) + (file-name-coding-system nnmail-pathname-coding-system) + print-level print-length item article + (standard-output (current-buffer))) + (mapatoms (lambda (symbol) + (cond ((not (boundp symbol)) + nil) + ((member (symbol-name symbol) '("+dirty" "+method")) + nil) + (t + (prin1 symbol) + (let ((range (symbol-value symbol))) + (princ " ") + (princ (car range)) + (princ " ") + (princ (cdr range)) + (princ "\n"))))) + my-obarray)))))))) (defun gnus-agent-get-local (group) (let* ((gmane (gnus-group-real-name group))