Function: rmail-error-bad-format

rmail-error-bad-format is a byte-compiled function defined in rmail.el.gz.

Signature

(rmail-error-bad-format &optional MSGNUM)

Documentation

Report that the buffer is not in the mbox file format.

MSGNUM, if present, indicates the malformed message.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmail.el.gz
(defun rmail-error-bad-format (&optional msgnum)
  "Report that the buffer is not in the mbox file format.
MSGNUM, if present, indicates the malformed message."
  (if msgnum
      (error "Message %d is not a valid RFC 822 (or later) message" msgnum)
    (error "Message is not a valid RFC 822 (or later) message")))