diff options
author | Kyle Meyer <kyle@kyleam.com> | 2023-05-30 23:56:04 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2023-05-30 23:56:04 -0400 |
commit | 880413af62393d932ca8838d3023399064d72013 (patch) | |
tree | eefe1fcb63ac2950b5d1f9988a3de0c1ca9a5655 | |
parent | f6c0755da48fcd2aa6c630776cf94e868948fc10 (diff) | |
download | piem-880413af62393d932ca8838d3023399064d72013.tar.gz |
piem-inbox-by-header-match: Fix docstring reference
piem-inbox-by-header-match is used by functions like
piem-notmuch-get-inbox and piem-gnus-get-inbox, which are wired up to
piem-get-inbox-functions not piem-get-mid-functions.
-rw-r--r-- | piem.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -492,7 +492,7 @@ non-nil, make the match specific for that message." "Return inbox based on matching message headers. This should be called from a buffer containing a message and is intended to be used by libraries implementing a function for -`piem-get-mid-functions'." +`piem-get-inbox-functions'." (pcase-let ((`(,listid ,to ,cc) (piem--message-fetch-decoded-fields '("list-id" "to" "cc")))) (catch 'hit |