Function: yenc-first-part-p
yenc-first-part-p is a byte-compiled function defined in yenc.el.gz.
Signature
(yenc-first-part-p)
Documentation
Say whether the buffer contains the first part of a yEnc file.
Source Code
;; Defined in /usr/src/emacs/lisp/mail/yenc.el.gz
(defun yenc-first-part-p ()
"Say whether the buffer contains the first part of a yEnc file."
(save-excursion
(goto-char (point-min))
(re-search-forward "^=ybegin part=1 " nil t)))