Function: mm-automatic-external-display-p

mm-automatic-external-display-p is a byte-compiled function defined in mm-decode.el.gz.

Signature

(mm-automatic-external-display-p TYPE)

Documentation

Return the user-defined method for TYPE.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/mm-decode.el.gz
(defun mm-automatic-external-display-p (type)
  "Return the user-defined method for TYPE."
  (let ((methods mm-automatic-external-display)
	method result)
    (while (setq method (pop methods))
      (when (string-match method type)
	(setq result t
	      methods nil)))
    result))