Function: rmail-message-regexp-p-1
rmail-message-regexp-p-1 is a byte-compiled function defined in
rmailsum.el.gz.
Signature
(rmail-message-regexp-p-1 MSG REGEXP)
Source Code
;; Defined in /usr/src/emacs/lisp/mail/rmailsum.el.gz
(defun rmail-message-regexp-p-1 (msg regexp)
;; Search functions can expect to start from the beginning.
(narrow-to-region (point) (save-excursion (search-forward "\n\n") (point)))
(if (and rmail-enable-mime
rmail-search-mime-header-function)
(funcall rmail-search-mime-header-function msg regexp (point))
;; We need to search the full headers, but probably want to decode
;; them so they match the ones people see displayed. (Bug#19088)
(rmail--decode-and-apply 're-search-forward regexp nil t)))