From 8ddc8af181ba078095792a87be0cfa546d4358e8 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Fri, 11 Jun 1999 12:19:06 +0000 Subject: [PATCH] (nnmail-save-active): Bind `output-coding-system' to the value of `nnmail-active-file-coding-system'. --- lisp/nnmail.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/nnmail.el b/lisp/nnmail.el index 6f0045f..24f4b03 100644 --- a/lisp/nnmail.el +++ b/lisp/nnmail.el @@ -486,7 +486,8 @@ nn*-request-list should have been called before calling this function." (defun nnmail-save-active (group-assoc file-name) "Save GROUP-ASSOC in ACTIVE-FILE." - (let ((coding-system-for-write nnmail-active-file-coding-system)) + (let ((coding-system-for-write nnmail-active-file-coding-system) + (output-coding-system nnmail-active-file-coding-system)) (when file-name (with-temp-file file-name (nnmail-generate-active group-assoc))))) -- 1.7.10.4