about summary refs log tree commit diff stats
path: root/gnus.el
diff options
context:
space:
mode:
authorCase Duckworth2021-05-04 19:57:48 -0500
committerCase Duckworth2021-05-04 19:57:48 -0500
commit21e17e1563acba44acebdfbfa4bc35464d6ef851 (patch)
tree2d617d517cd84c012af2426c19b198c2f4b5de3a /gnus.el
parentOnly update packages with C-u (diff)
downloademacs-21e17e1563acba44acebdfbfa4bc35464d6ef851.tar.gz
emacs-21e17e1563acba44acebdfbfa4bc35464d6ef851.zip
Load mailcap on Linux
Diffstat (limited to 'gnus.el')
-rw-r--r--gnus.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/gnus.el b/gnus.el index db7b0c9..8ad5dc5 100644 --- a/gnus.el +++ b/gnus.el
@@ -133,6 +133,11 @@
133(setq mm-discouraged-alternatives '("text/html" 133(setq mm-discouraged-alternatives '("text/html"
134 "text/richtext")) 134 "text/richtext"))
135 135
136(with-eval-after-load 'mailcap
137 (cond ((eq system-type 'darwin))
138 ((eq system-type 'windows-nt))
139 (t (mailcap-parse-mailcaps))))
140
136;;; Composing mail 141;;; Composing mail
137(hook-defun setup-message-mode message-mode-hook 142(hook-defun setup-message-mode message-mode-hook
138 (flyspell-mode +1) 143 (flyspell-mode +1)