extra newlines at the end of the buffer.
2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
+ * simple.el (delete-trailing-whitespace): Also delete
+ extra newlines at the end of the buffer.
+
* textmodes/picture.el: Make motion commands obey shift-select-mode.
(picture-newline): Use forward-line so as to ignore fields.
(if (looking-at ".*\f")
(goto-char (match-end 0))))
(delete-region (point) (match-end 0)))
+ (save-restriction
+ (goto-char end-marker)
+ (widen)
+ (if (and (eobp)
+ (looking-back "\n\n+" nil t))
+ (replace-match "\n")))
(set-marker end-marker nil))))
;; Return nil for the benefit of `write-file-functions'.
nil)