Variable: mml-mode-hook

mml-mode-hook is a customizable variable defined in mml.el.gz.

Value

nil

Documentation

Hook run after entering or leaving mml-mode(var)/mml-mode(fun).

No problems result if this variable is not bound. add-hook automatically binds it. (This is true for all hook variables.)

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/mml.el.gz
(define-minor-mode mml-mode
  "Minor mode for editing MML.
MML is the MIME Meta Language, a minor mode for composing MIME articles.
See Info node `(emacs-mime)Composing'.

\\{mml-mode-map}"
  :lighter " MML" :keymap mml-mode-map
  (when mml-mode
    (when (boundp 'dnd-protocol-alist)
      (setq-local dnd-protocol-alist
                  (append mml-dnd-protocol-alist dnd-protocol-alist)))))