]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/simple.el (delete-trailing-whitespace): Also delete
authorPeter J. Weisberg <pj@irregularexpressions.net>
Fri, 23 Sep 2011 14:56:00 +0000 (10:56 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 23 Sep 2011 14:56:00 +0000 (10:56 -0400)
extra newlines at the end of the buffer.

lisp/ChangeLog
lisp/simple.el

index 8c52d626c02e86bf86b3667695bf016c1b1ddcdc..f17ba200815828653cb9d480f58a7ba0c0d631b8 100644 (file)
@@ -1,5 +1,8 @@
 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.
 
index 35193135396e5379d78b45fa339f53849239fd3d..c828584c17f4d4106f6a398450524229447dbef4 100644 (file)
@@ -586,6 +586,12 @@ If the region is active, only delete whitespace within the region."
             (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)