mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
nnatom: Fix parsing of empty articles
* lisp/gnus/nnatom.el (nnatom--read-parts): Fix typo (bug#77539).
This commit is contained in:
parent
41ffeaec15
commit
242ee957f9
1 changed files with 1 additions and 1 deletions
|
|
@ -270,7 +270,7 @@ return the subject. Otherwise, return nil."
|
|||
(or st (push summary parts)))
|
||||
((setq content (or summary content))
|
||||
(push (append content '(links)) parts))
|
||||
(t (push '((nil (Content-Type . "text/html") links)) parts)))
|
||||
(t (push '(nil (Content-Type . "text/html") links) parts)))
|
||||
parts))
|
||||
(defvoo nnatom-read-parts-function #'nnatom--read-parts
|
||||
nil nnfeed-read-parts-function)
|
||||
|
|
|
|||
Loading…
Reference in a new issue