Function: mm-body-7-or-8

mm-body-7-or-8 is an autoloaded and byte-compiled function defined in mm-bodies.el.gz.

Signature

(mm-body-7-or-8)

Documentation

Say whether the body is 7bit or 8bit.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/mm-bodies.el.gz
(defun mm-body-7-or-8 ()
  "Say whether the body is 7bit or 8bit."
  (if (save-excursion
	(goto-char (point-min))
	(skip-chars-forward mm-7bit-chars)
	(eobp))
      '7bit
    '8bit))