Function: article-strip-all-blank-lines
article-strip-all-blank-lines is an interactive and byte-compiled
function defined in gnus-art.el.gz.
Signature
(article-strip-all-blank-lines)
Documentation
Strip all blank lines.
Probably introduced at or before Emacs version 20.4.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun article-strip-all-blank-lines ()
"Strip all blank lines."
(interactive nil gnus-article-mode)
(save-excursion
(let ((inhibit-read-only t))
(article-goto-body)
(while (re-search-forward "^[ \t]*\n" nil t)
(replace-match "" t t)))))