diff options
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/nnimap.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index c72cbf45587..fc005614634 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-10-20 Julien Danjou <julien@danjou.info> | ||
| 2 | |||
| 3 | * nnimap.el (nnimap-request-article): Fix BODYSTRUCTURE retrieval. | ||
| 4 | |||
| 1 | 2010-10-20 Andreas Seltenreich <seltenreich@gmx.de> | 5 | 2010-10-20 Andreas Seltenreich <seltenreich@gmx.de> |
| 2 | 6 | ||
| 3 | * gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily | 7 | * gnus-draft.el (gnus-draft-check-draft-articles): Don't unnecessarily |
diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el index 21c0222d91a..5e4e051a4ce 100644 --- a/lisp/gnus/nnimap.el +++ b/lisp/gnus/nnimap.el | |||
| @@ -477,7 +477,7 @@ textual parts.") | |||
| 477 | (let ((start (point))) | 477 | (let ((start (point))) |
| 478 | (forward-sexp 1) | 478 | (forward-sexp 1) |
| 479 | (downcase-region start (point)) | 479 | (downcase-region start (point)) |
| 480 | (goto-char (point)) | 480 | (goto-char start) |
| 481 | (read (current-buffer)))) | 481 | (read (current-buffer)))) |
| 482 | parts (nnimap-find-wanted-parts structure)))) | 482 | parts (nnimap-find-wanted-parts structure)))) |
| 483 | (when (if parts | 483 | (when (if parts |