Function: article-strip-leading-space
article-strip-leading-space is an interactive and byte-compiled
function defined in gnus-art.el.gz.
Signature
(article-strip-leading-space)
Documentation
Remove all white space from the beginning of the lines in the article.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun article-strip-leading-space ()
"Remove all white space from the beginning of the lines in the article."
(interactive nil gnus-article-mode)
(save-excursion
(let ((inhibit-read-only t))
(article-goto-body)
(while (re-search-forward "^[ \t]+" nil t)
(replace-match "" t t)))))