Function: mm-readable-p

mm-readable-p is a byte-compiled function defined in mm-decode.el.gz.

Signature

(mm-readable-p HANDLE)

Documentation

Say whether the content of HANDLE is readable.

Aliases

mh-mm-readable-p

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/mm-decode.el.gz
(defun mm-readable-p (handle)
  "Say whether the content of HANDLE is readable."
  (and (< (with-current-buffer (mm-handle-buffer handle)
	    (buffer-size)) 10000)
       (mm-with-unibyte-buffer
	 (mm-insert-part handle)
	 (and (eq (mm-body-7-or-8) '7bit)
	      (not (mm-long-lines-p 76))))))