Function: gnus-unbuttonized-mime-type-p

gnus-unbuttonized-mime-type-p is a byte-compiled function defined in gnus-art.el.gz.

Signature

(gnus-unbuttonized-mime-type-p TYPE)

Documentation

Say whether TYPE is to be unbuttonized.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-unbuttonized-mime-type-p (type)
  "Say whether TYPE is to be unbuttonized."
  (unless gnus-inhibit-mime-unbuttonizing
    (when (catch 'found
	    (let ((types gnus-unbuttonized-mime-types))
	      (while types
		(when (string-match (pop types) type)
		  (throw 'found t)))))
      (not (catch 'found
	     (let ((types gnus-buttonized-mime-types))
	       (while types
		 (when (string-match (pop types) type)
		   (throw 'found t)))))))))