diff options
| author | Basil L. Contovounesios | 2020-06-23 15:48:24 +0100 |
|---|---|---|
| committer | Basil L. Contovounesios | 2020-06-23 15:48:24 +0100 |
| commit | 86a24971118958baf5a0a88a9c7c2cb053501b6d (patch) | |
| tree | c62b29b0dbe969ea27b1a03209545c96f006a91c | |
| parent | 7fd3f0b3812f022bd63fc0cd202be793aae266c4 (diff) | |
| download | emacs-86a24971118958baf5a0a88a9c7c2cb053501b6d.tar.gz emacs-86a24971118958baf5a0a88a9c7c2cb053501b6d.zip | |
; Fix indentation in last change
* lisp/gnus/gnus-cloud.el (gnus-cloud-download-data): Reindent first
argument of prog1.
| -rw-r--r-- | lisp/gnus/gnus-cloud.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/gnus/gnus-cloud.el b/lisp/gnus/gnus-cloud.el index f730518241d..673a4d22988 100644 --- a/lisp/gnus/gnus-cloud.el +++ b/lisp/gnus/gnus-cloud.el | |||
| @@ -478,8 +478,7 @@ Otherwise, returns the Gnus Cloud data chunks." | |||
| 478 | (push (gnus-cloud-parse-chunk) chunks) | 478 | (push (gnus-cloud-parse-chunk) chunks) |
| 479 | (forward-line 1)))) | 479 | (forward-line 1)))) |
| 480 | (if update | 480 | (if update |
| 481 | (prog1 | 481 | (prog1 (mapcar #'gnus-cloud-update-all chunks) |
| 482 | (mapcar #'gnus-cloud-update-all chunks) | ||
| 483 | (setq gnus-cloud-sequence highest-sequence-seen)) | 482 | (setq gnus-cloud-sequence highest-sequence-seen)) |
| 484 | chunks))) | 483 | chunks))) |
| 485 | 484 | ||