diff options
| author | Lars Ingebrigtsen | 2022-06-24 08:57:30 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2022-06-24 09:57:01 +0200 |
| commit | 4266871467ebcd67ea978e28a9b9ebfccd9b4d6d (patch) | |
| tree | e7ca41331e0163a7d98e87af2da3396b91aee3bb | |
| parent | 289b457cac1439ac5f9bb6ce1143d91b8d52da91 (diff) | |
| download | emacs-4266871467ebcd67ea978e28a9b9ebfccd9b4d6d.tar.gz emacs-4266871467ebcd67ea978e28a9b9ebfccd9b4d6d.zip | |
Fix previous nnimap header fetching change
* lisp/gnus/nnimap.el (nnimap-retrieve-headers): Ensure that the
splitting works.
| -rw-r--r-- | lisp/gnus/nnimap.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el index c158367b736..a69b5c77270 100644 --- a/lisp/gnus/nnimap.el +++ b/lisp/gnus/nnimap.el | |||
| @@ -239,7 +239,7 @@ during splitting, which may be slow." | |||
| 239 | (when (nnimap-change-group group server) | 239 | (when (nnimap-change-group group server) |
| 240 | (with-current-buffer (nnimap-buffer) | 240 | (with-current-buffer (nnimap-buffer) |
| 241 | (erase-buffer) | 241 | (erase-buffer) |
| 242 | (let ((ranges (gnus-compress-sequence articles)) | 242 | (let ((ranges (gnus-compress-sequence articles t)) |
| 243 | sequence) | 243 | sequence) |
| 244 | ;; If we have a lot of ranges, split them up to avoid | 244 | ;; If we have a lot of ranges, split them up to avoid |
| 245 | ;; generating too-long lines. (The limit is 8192 octects, | 245 | ;; generating too-long lines. (The limit is 8192 octects, |