]> git.eshelyaron.com Git - emacs.git/commitdiff
(pop3-movemail-file-coding-system): Doc fix.
authorDave Love <fx@gnu.org>
Sun, 19 Dec 1999 00:39:01 +0000 (00:39 +0000)
committerDave Love <fx@gnu.org>
Sun, 19 Dec 1999 00:39:01 +0000 (00:39 +0000)
(pop3-movemail): Replace binding of pop3-movemail-file-coding-system.

lisp/gnus/ChangeLog
lisp/gnus/pop3.el

index 872f1a2cabeb6ed18fd62f7ae0e3469e01c7652e..b4e5a3f6d3ed2a282edd74dffac43376c3546841 100644 (file)
@@ -1,3 +1,9 @@
+1999-12-19  Dave Love  <fx@gnu.org>
+
+       * mail/pop3.el (pop3-movemail-file-coding-system): Doc fix.
+       (pop3-movemail): Replace binding of
+       pop3-movemail-file-coding-system.
+
 1999-10-23  Dave Love  <fx@gnu.org>
 
        * nnvirtual.el (nnvirtual-create-mapping): Don't use mapc.
index c7159400a0cb0af6327b98907ab2722ef9fac2c9..6d31b05f50621129ce8729fc399ba8c8941be8f5 100644 (file)
@@ -61,7 +61,7 @@ values are 'apop.")
 Used for APOP authentication.")
 
 (defvar pop3-movemail-file-coding-system nil
-  "Crashbox made by `pop3-movemail' with this coding system.")
+  "Coding system for the crashbox made by `pop3-movemail'.")
 
 (defvar pop3-read-point nil)
 (defvar pop3-debug nil)
@@ -95,7 +95,8 @@ Used for APOP authentication.")
          (pop3-retr process n crashbuf)
          (save-excursion
            (set-buffer crashbuf)
-           (write-region (point-min) (point-max) crashbox t 'nomesg)
+           (let ((coding-system-for-write pop3-movemail-file-coding-system))
+             (write-region (point-min) (point-max) crashbox t 'nomesg))
            (set-buffer (process-buffer process))
            (while (> (buffer-size) 5000)
              (goto-char (point-min))