Function: mm-inline-override-p
mm-inline-override-p is a byte-compiled function defined in
mm-decode.el.gz.
Signature
(mm-inline-override-p HANDLE)
Documentation
Say whether HANDLE should have inline behavior overridden.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/mm-decode.el.gz
(defun mm-inline-override-p (handle)
"Say whether HANDLE should have inline behavior overridden."
(let ((types mm-inline-override-types)
(type (mm-handle-media-type handle))
ty)
(catch 'found
(while (setq ty (pop types))
(when (string-match ty type)
(throw 'found t))))))