Function: message--fold-long-headers

message--fold-long-headers is a byte-compiled function defined in message.el.gz.

Signature

(message--fold-long-headers)

Documentation

Fold too-long header lines.

Each line should be no more than 79 characters long.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message--fold-long-headers ()
  "Fold too-long header lines.
Each line should be no more than 79 characters long."
  (goto-char (point-min))
  (while (not (eobp))
    (if (and (looking-at "[^:]+:")
             (> (- (line-end-position) (point)) 79))
	(goto-char (mail-header-fold-field))
      (forward-line 1))))