diff options
author | Andrew G Cohen <cohen@andy.bu.edu> | 2020-09-23 16:46:36 +0800 |
---|---|---|
committer | Andrew G Cohen <cohen@andy.bu.edu> | 2020-09-23 16:46:36 +0800 |
commit | 80b0a69b606c9beb738fe797a13d23ca28c4f09d (patch) | |
tree | 8ec50e4775f4323bb5e23ff4c4a05e5a4d6bc894 /lisp | |
parent | 83a4e4c2a92aa7bcfc7419469b1153f100fe019f (diff) | |
download | emacs-80b0a69b606c9beb738fe797a13d23ca28c4f09d.tar.gz emacs-80b0a69b606c9beb738fe797a13d23ca28c4f09d.tar.bz2 emacs-80b0a69b606c9beb738fe797a13d23ca28c4f09d.zip |
Run gnus-parse-headers-hook when retrieving nnselect headers
* lisp/gnus/nnselect.el (nnselect-retrieve-headers): Run the
gnus-parse-headers-hook when retrieving headers in nnselect, just like
in a real group.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/gnus/nnselect.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/gnus/nnselect.el b/lisp/gnus/nnselect.el index 9bff9fdd0c0..c6f2ffae9c6 100644 --- a/lisp/gnus/nnselect.el +++ b/lisp/gnus/nnselect.el @@ -328,6 +328,7 @@ If this variable is nil, or if the provided function returns nil, (nnheader-parse-nov)) (forward-line 1))) ('headers + (gnus-run-hooks 'gnus-parse-headers-hook) (let ((nnmail-extra-headers gnus-extra-headers)) (goto-char (point-min)) (while (not (eobp)) |