changeset 34619:237139766bdc

(delete-trailing-whitespace): Remove extraneous let.
author Miles Bader <miles@gnu.org>
date Fri, 15 Dec 2000 16:24:13 +0000
parents 81ecf6fce11a
children 06191291f2a2
files lisp/simple.el
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/simple.el	Fri Dec 15 15:13:29 2000 +0000
+++ b/lisp/simple.el	Fri Dec 15 16:24:13 2000 +0000
@@ -232,11 +232,10 @@
   (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.