Function: nnmail-remove-leading-whitespace
nnmail-remove-leading-whitespace is a byte-compiled function defined
in nnmail.el.gz.
Signature
(nnmail-remove-leading-whitespace)
Documentation
Remove excessive whitespace from all headers.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnmail.el.gz
;;; Message washing functions
(defun nnmail-remove-leading-whitespace ()
"Remove excessive whitespace from all headers."
(goto-char (point-min))
(while (re-search-forward "^\\([^ :]+: \\) +" nil t)
(replace-match "\\1" t)))