mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
emacs: notmuch-show--register-cids: fix names of bindings
This commit is contained in:
parent
6cae6f32b1
commit
99bf983d8c
1 changed files with 4 additions and 4 deletions
|
@ -581,13 +581,13 @@ message at DEPTH in the current thread."
|
|||
;; alternative (even if we can't render it).
|
||||
(push (list content-id msg part) notmuch-show--cids)))
|
||||
;; Recurse on sub-parts
|
||||
(pcase-let ((`(,content ,type)
|
||||
(pcase-let ((`(,type ,subtype)
|
||||
(split-string (downcase (plist-get part :content-type)) "/")))
|
||||
(cond ((equal content "multipart")
|
||||
(cond ((equal type "multipart")
|
||||
(mapc (apply-partially #'notmuch-show--register-cids msg)
|
||||
(plist-get part :content)))
|
||||
((and (equal content "message")
|
||||
(equal type "rfc822"))
|
||||
((and (equal type "message")
|
||||
(equal subtype "rfc822"))
|
||||
(notmuch-show--register-cids
|
||||
msg
|
||||
(car (plist-get (car (plist-get part :content)) :body)))))))
|
||||
|
|
Loading…
Reference in a new issue