]> git.eshelyaron.com Git - emacs.git/commitdiff
(delete-trailing-whitespace): Remove extraneous let.
authorMiles Bader <miles@gnu.org>
Fri, 15 Dec 2000 16:25:51 +0000 (16:25 +0000)
committerMiles Bader <miles@gnu.org>
Fri, 15 Dec 2000 16:25:51 +0000 (16:25 +0000)
lisp/ChangeLog
lisp/simple.el

index 044270f56b78d555f4682dc27c59c014ed0814b1..c16ab3fba57b07a666fe7dda07eca54f32a5e25c 100644 (file)
@@ -1,3 +1,7 @@
+2000-12-16  Miles Bader  <miles@gnu.org>
+
+       * simple.el (delete-trailing-whitespace): Remove extraneous let.
+
 2000-12-15  Miles Bader  <miles@gnu.org>
 
        * comint.el (comint-send-string, comint-send-region): Also accept
index b145a4a0f928e6a8bcd896cac55120970fac047a..21118aa5c9166da8f3bd4945c56cf769b7cf8587 100644 (file)
@@ -232,11 +232,10 @@ This respects narrowing, created by \\[narrow-to-region] and friends."
   (interactive "*")
   (save-match-data
     (save-excursion
-      (let (eol bol)         
       (goto-char (point-min))
       (while (re-search-forward "\\s-$" nil t)
        (skip-syntax-backward "-" (save-excursion (forward-line 0) (point)))
-       (delete-region (point) (match-end 0)))))))
+       (delete-region (point) (match-end 0))))))
 
 (defun newline-and-indent ()
   "Insert a newline, then indent according to major mode.