Function: nnfolder-normalize-buffer

nnfolder-normalize-buffer is a byte-compiled function defined in nnfolder.el.gz.

Signature

(nnfolder-normalize-buffer)

Documentation

Make sure there are two newlines at the end of the buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/nnfolder.el.gz
(defun nnfolder-normalize-buffer ()
  "Make sure there are two newlines at the end of the buffer."
  (goto-char (point-max))
  (skip-chars-backward "\n")
  (delete-region (point) (point-max))
  (unless (bobp)
    (insert "\n\n")))