Function: article-strip-leading-blank-lines

article-strip-leading-blank-lines is an interactive and byte-compiled function defined in gnus-art.el.gz.

Signature

(article-strip-leading-blank-lines)

Documentation

Remove all blank lines from the beginning of the article.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun article-strip-leading-blank-lines ()
  "Remove all blank lines from the beginning of the article."
  (interactive nil gnus-article-mode)
  (save-excursion
    (let ((inhibit-read-only t))
      (when (article-goto-body)
	(while (and (not (eobp))
		    (looking-at "[ \t]*$"))
	  (gnus-delete-line))))))