diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-04-12 03:10:19 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-04-12 03:10:19 +0000 |
commit | bcb0fd5c82678e1a8d308cac4ae1bfc7edf7d011 (patch) | |
tree | 5ccba68137f09a97454e857c57314792151d29b0 | |
parent | a76a438129cacd3120792eb4317e92671f795f6e (diff) | |
download | emacs-bcb0fd5c82678e1a8d308cac4ae1bfc7edf7d011.tar.gz |
(nnimap-retrieve-headers): Don't assume point-min == 1.
-rw-r--r-- | lisp/gnus/nnimap.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el index 0d1c57c090f..00a8c51970b 100644 --- a/lisp/gnus/nnimap.el +++ b/lisp/gnus/nnimap.el @@ -581,8 +581,8 @@ If EXAMINE is non-nil the group is selected read-only." (cons low high) group server)) (when (buffer-modified-p) (nnmail-write-region - 1 (point-max) (nnimap-group-overview-filename group server) - nil 'nomesg)) + (point-min) (point-max) + (nnimap-group-overview-filename group server) nil 'nomesg)) (nnheader-nov-delete-outside-range low high)))) 'nov))) |