branch: externals/plz commit 69d5bf74f63c903dfa39383ff39e21e6a5253bd0 Author: Adam Porter <a...@alphapapa.net> Commit: Adam Porter <a...@alphapapa.net>
Fix: (plz--coding-system) Alist key --- plz.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plz.el b/plz.el index 857f315b1b..910bd9e96b 100644 --- a/plz.el +++ b/plz.el @@ -479,7 +479,7 @@ according to the apparent coding system." HEADERS may optionally be an alist of parsed HTTP headers to refer to rather than the current buffer's unparsed headers." (let* ((headers (or headers (plz--headers))) - (content-type (alist-get "Content-Type" headers nil nil #'string=))) + (content-type (alist-get 'content-type headers))) (when content-type (coding-system-from-name content-type))))