diff options
| author | Eric Abrahamsen | 2018-07-25 12:13:36 -0700 |
|---|---|---|
| committer | Eric Abrahamsen | 2018-07-25 12:13:36 -0700 |
| commit | a3b32a8be1e01ba10ecae9abc27214298467c995 (patch) | |
| tree | 514892c23134197bf2ca789489f3535749a0278a | |
| parent | 7d96ed541c242cb0ede4ca34df6ff97f432ac5e6 (diff) | |
| download | emacs-a3b32a8be1e01ba10ecae9abc27214298467c995.tar.gz emacs-a3b32a8be1e01ba10ecae9abc27214298467c995.zip | |
Fix docstring of gnus-dependencies-add-header
* lisp/gnus/gnus-sum.el (gnus-dependencies-add-header): Code is
correct, but docs had logic of `gnus-summary-ignore-duplicates'
backwards: if it's t, the Message-IDs will not be renamed.
| -rw-r--r-- | lisp/gnus/gnus-sum.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index e562b30170a..ceb98421665 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el | |||
| @@ -4310,10 +4310,10 @@ If SELECT-ARTICLES, only select those articles from GROUP." | |||
| 4310 | If FORCE-NEW is not nil, enter HEADER into the DEPENDENCIES table even | 4310 | If FORCE-NEW is not nil, enter HEADER into the DEPENDENCIES table even |
| 4311 | if it was already present. | 4311 | if it was already present. |
| 4312 | 4312 | ||
| 4313 | If `gnus-summary-ignore-duplicates' is nil then duplicate Message-IDs | 4313 | If `gnus-summary-ignore-duplicates' is non-nil then duplicate |
| 4314 | will not be entered in the DEPENDENCIES table. Otherwise duplicate | 4314 | Message-IDs will not be entered in the DEPENDENCIES table. |
| 4315 | Message-IDs will be renamed to a unique Message-ID before being | 4315 | Otherwise duplicate Message-IDs will be renamed to a unique |
| 4316 | entered. | 4316 | Message-ID before being entered. |
| 4317 | 4317 | ||
| 4318 | Returns HEADER if it was entered in the DEPENDENCIES. Returns nil otherwise." | 4318 | Returns HEADER if it was entered in the DEPENDENCIES. Returns nil otherwise." |
| 4319 | (let* ((id (mail-header-id header)) | 4319 | (let* ((id (mail-header-id header)) |