# HG changeset patch # User Miles Bader # Date 976897453 0 # Node ID 237139766bdc09697199f3c1a36b9d73d08aa993 # Parent 81ecf6fce11a11fa47c02761b7e1a275eca875e1 (delete-trailing-whitespace): Remove extraneous let. diff -r 81ecf6fce11a -r 237139766bdc lisp/simple.el --- 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.