aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/gnus
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2002-04-12 03:09:47 +0000
committerStefan Monnier <[email protected]>2002-04-12 03:09:47 +0000
commita76a438129cacd3120792eb4317e92671f795f6e (patch)
treeb2215e8dde314273f9a18e2eca64442b6a3b2131 /lisp/gnus
parent2f85befdd53c467df20fc9894bb9ac612e69709e (diff)
(nnmbox-create-mbox): Don't assume point-min == 1.
Diffstat (limited to 'lisp/gnus')
-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 43b00a6509..4c340b2547 100644
--- a/lisp/gnus/nnmbox.el
+++ b/lisp/gnus/nnmbox.el
@@ -523,7 +523,8 @@
(let ((nnmail-file-coding-system
(or nnmbox-file-coding-system-for-write
nnmbox-file-coding-system)))
- (nnmail-write-region 1 1 nnmbox-mbox-file t 'nomesg))))
+ (nnmail-write-region (point-min) (point-min)
+ nnmbox-mbox-file t 'nomesg))))
(defun nnmbox-read-mbox ()
(nnmail-activate 'nnmbox)