aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2002-04-12 03:09:47 +0000
committerStefan Monnier2002-04-12 03:09:47 +0000
commita76a438129cacd3120792eb4317e92671f795f6e (patch)
treeb2215e8dde314273f9a18e2eca64442b6a3b2131
parent2f85befdd53c467df20fc9894bb9ac612e69709e (diff)
downloademacs-a76a438129cacd3120792eb4317e92671f795f6e.tar.gz
emacs-a76a438129cacd3120792eb4317e92671f795f6e.zip
(nnmbox-create-mbox): Don't assume point-min == 1.
-rw-r--r--lisp/gnus/nnmbox.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/gnus/nnmbox.el b/lisp/gnus/nnmbox.el
index 43b00a65098..4c340b2547f 100644
--- a/lisp/gnus/nnmbox.el
+++ b/lisp/gnus/nnmbox.el
@@ -523,7 +523,8 @@
523 (let ((nnmail-file-coding-system 523 (let ((nnmail-file-coding-system
524 (or nnmbox-file-coding-system-for-write 524 (or nnmbox-file-coding-system-for-write
525 nnmbox-file-coding-system))) 525 nnmbox-file-coding-system)))
526 (nnmail-write-region 1 1 nnmbox-mbox-file t 'nomesg)))) 526 (nnmail-write-region (point-min) (point-min)
527 nnmbox-mbox-file t 'nomesg))))
527 528
528(defun nnmbox-read-mbox () 529(defun nnmbox-read-mbox ()
529 (nnmail-activate 'nnmbox) 530 (nnmail-activate 'nnmbox)