# HG changeset patch # User Stefan Monnier # Date 1250437250 0 # Node ID bd9adfb1acc983554f397c6116ad2422eb1d1806 # Parent 62681dd69ecb06f15c0239a4d67e49219c7e52f4 (lisp-indent-region): Remove unused function. diff -r 62681dd69ecb -r bd9adfb1acc9 lisp/ChangeLog --- a/lisp/ChangeLog Sun Aug 16 15:39:11 2009 +0000 +++ b/lisp/ChangeLog Sun Aug 16 15:40:50 2009 +0000 @@ -1,5 +1,7 @@ 2009-08-16 Stefan Monnier + * 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 (tiny change) diff -r 62681dd69ecb -r bd9adfb1acc9 lisp/emacs-lisp/lisp-mode.el --- a/lisp/emacs-lisp/lisp-mode.el Sun Aug 16 15:39:11 2009 +0000 +++ b/lisp/emacs-lisp/lisp-mode.el Sun Aug 16 15:40:50 2009 +0000 @@ -1340,16 +1340,6 @@ (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."