Function: message-check-news-syntax

message-check-news-syntax is a byte-compiled function defined in message.el.gz.

Signature

(message-check-news-syntax)

Documentation

Check the syntax of the message.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message-check-news-syntax ()
  "Check the syntax of the message."
  (save-excursion
    (save-restriction
      (widen)
      ;; We narrow to the headers and check them first.
      (save-excursion
	(save-restriction
	  (message-narrow-to-headers)
	  (message-check-news-header-syntax))))))