Yes, this is an Emacs question, but it is mutt related, so I thought I
would ask it here. I found this at varous mutt places on the web and
recently added the following to my .emacs profile and it sort-of works:
(setq auto-mode-alist (append (list (cons "^\/tmp\/mutt" 'mail-mode))
auto-mode-alist))
(add-hook 'mail-mode-hook 'my-mail-mode-hook)
(defun my-mail-mode-hook ()
(auto-fill-mode)
)
The problem is that the mail-mode occurs, but the auto-fill-mode does
not. I am firmly convinced that it did work once. And only once.
Anybody got a spare clue for me?
andy