]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/simple.el (delete-trailing-whitespace): Document last change; simplify.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 23 Sep 2011 15:06:14 +0000 (11:06 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 23 Sep 2011 15:06:14 +0000 (11:06 -0400)
lisp/ChangeLog
lisp/simple.el

index f17ba200815828653cb9d480f58a7ba0c0d631b8..fd5cb9bcac775d565f5aa9844a928ab0c702f9eb 100644 (file)
@@ -1,3 +1,8 @@
+2011-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * simple.el (delete-trailing-whitespace):
+       Document last change; simplify.
+
 2011-09-23  Peter J. Weisberg  <pj@irregularexpressions.net>
 
        * simple.el (delete-trailing-whitespace): Also delete
index c828584c17f4d4106f6a398450524229447dbef4..142270930ca957e3a4b1113611aa8ef5d6169e37 100644 (file)
@@ -568,6 +568,7 @@ On nonblank line, delete any immediately following blank lines."
 All whitespace after the last non-whitespace character in a line is deleted.
 This respects narrowing, created by \\[narrow-to-region] and friends.
 A formfeed is not considered whitespace by this function.
+If END is nil, also delete all trailing lines at the end of the buffer.
 If the region is active, only delete whitespace within the region."
   (interactive (progn
                  (barf-if-buffer-read-only)
@@ -580,18 +581,18 @@ If the region is active, only delete whitespace within the region."
             (start (or start (point-min))))
         (goto-char start)
         (while (re-search-forward "\\s-$" end-marker t)
-          (skip-syntax-backward "-" (save-excursion (forward-line 0) (point)))
+          (skip-syntax-backward "-" (line-beginning-position))
           ;; Don't delete formfeeds, even if they are considered whitespace.
-          (save-match-data
-            (if (looking-at ".*\f")
-                (goto-char (match-end 0))))
+          (if (looking-at-p ".*\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")))
+        ;; Delete trailing empty lines.
+        (goto-char end-marker)
+        (when (and (not end)
+                   (<= (skip-chars-backward "\n") -2)
+                   ;; Really the end of buffer.
+                   (save-restriction (widen) (eobp)))
+          (delete-region (1+ (point)) end-marker))
         (set-marker end-marker nil))))
   ;; Return nil for the benefit of `write-file-functions'.
   nil)