Function: mh-mml-tag-present-p
mh-mml-tag-present-p is an autoloaded and byte-compiled function
defined in mh-mime.el.gz.
Signature
(mh-mml-tag-present-p)
Documentation
Check if the current buffer has text which may be a MML tag.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-mime.el.gz
;;; Support Routines for MH-Letter Commands
;;;###mh-autoload
(defun mh-mml-tag-present-p ()
"Check if the current buffer has text which may be a MML tag."
(save-excursion
(goto-char (point-min))
(re-search-forward
(concat
"\\(<#\\(mml\\|part\\)\\(.\\|\n\\)*>[ \n\t]*<#/\\(mml\\|part\\)>\\|"
"^<#secure.+>$\\)")
nil t)))