2009-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
+ * emacs-lisp/lisp-mode.el (lisp-indent-region): Remove unused function.
+
* term.el: Fix commenting convention, turn comments into docstrings.
2009-08-16 E. Jay Berkenbilt <ejb@ql.org> (tiny change)
(setq outer-loop-done (= (point) last-point))
(setq last-point (point)))))))
-(defun lisp-indent-region (start end)
- "Indent every line whose first char is between START and END inclusive."
- (save-excursion
- (let ((endmark (copy-marker end)))
- (goto-char start)
- (and (bolp) (not (eolp))
- (lisp-indent-line))
- (indent-sexp endmark)
- (set-marker endmark nil))))
-
(defun indent-pp-sexp (&optional arg)
"Indent each line of the list starting just after point, or prettyprint it.
A prefix argument specifies pretty-printing."