diff options
| author | Dave Love | 1999-12-19 00:39:01 +0000 |
|---|---|---|
| committer | Dave Love | 1999-12-19 00:39:01 +0000 |
| commit | a9c810bf47407b52171c219c593d0fc2fdf3ca54 (patch) | |
| tree | 47cbd4bc33d8a121d7884e180a326a232d5fed7a | |
| parent | b416e85a131bdcaaebd9050e096ff5765fb81599 (diff) | |
| download | emacs-a9c810bf47407b52171c219c593d0fc2fdf3ca54.tar.gz emacs-a9c810bf47407b52171c219c593d0fc2fdf3ca54.zip | |
(pop3-movemail-file-coding-system): Doc fix.
(pop3-movemail): Replace binding of pop3-movemail-file-coding-system.
| -rw-r--r-- | lisp/gnus/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/gnus/pop3.el | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 872f1a2cabe..b4e5a3f6d3e 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 1999-12-19 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * mail/pop3.el (pop3-movemail-file-coding-system): Doc fix. | ||
| 4 | (pop3-movemail): Replace binding of | ||
| 5 | pop3-movemail-file-coding-system. | ||
| 6 | |||
| 1 | 1999-10-23 Dave Love <fx@gnu.org> | 7 | 1999-10-23 Dave Love <fx@gnu.org> |
| 2 | 8 | ||
| 3 | * nnvirtual.el (nnvirtual-create-mapping): Don't use mapc. | 9 | * nnvirtual.el (nnvirtual-create-mapping): Don't use mapc. |
diff --git a/lisp/gnus/pop3.el b/lisp/gnus/pop3.el index c7159400a0c..6d31b05f506 100644 --- a/lisp/gnus/pop3.el +++ b/lisp/gnus/pop3.el | |||
| @@ -61,7 +61,7 @@ values are 'apop.") | |||
| 61 | Used for APOP authentication.") | 61 | Used for APOP authentication.") |
| 62 | 62 | ||
| 63 | (defvar pop3-movemail-file-coding-system nil | 63 | (defvar pop3-movemail-file-coding-system nil |
| 64 | "Crashbox made by `pop3-movemail' with this coding system.") | 64 | "Coding system for the crashbox made by `pop3-movemail'.") |
| 65 | 65 | ||
| 66 | (defvar pop3-read-point nil) | 66 | (defvar pop3-read-point nil) |
| 67 | (defvar pop3-debug nil) | 67 | (defvar pop3-debug nil) |
| @@ -95,7 +95,8 @@ Used for APOP authentication.") | |||
| 95 | (pop3-retr process n crashbuf) | 95 | (pop3-retr process n crashbuf) |
| 96 | (save-excursion | 96 | (save-excursion |
| 97 | (set-buffer crashbuf) | 97 | (set-buffer crashbuf) |
| 98 | (write-region (point-min) (point-max) crashbox t 'nomesg) | 98 | (let ((coding-system-for-write pop3-movemail-file-coding-system)) |
| 99 | (write-region (point-min) (point-max) crashbox t 'nomesg)) | ||
| 99 | (set-buffer (process-buffer process)) | 100 | (set-buffer (process-buffer process)) |
| 100 | (while (> (buffer-size) 5000) | 101 | (while (> (buffer-size) 5000) |
| 101 | (goto-char (point-min)) | 102 | (goto-char (point-min)) |