+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
(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.