]> git.eshelyaron.com Git - emacs.git/commitdiff
(lisp-indent-region): Remove unused function.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 16 Aug 2009 15:40:50 +0000 (15:40 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 16 Aug 2009 15:40:50 +0000 (15:40 +0000)
lisp/ChangeLog
lisp/emacs-lisp/lisp-mode.el

index 7ddb96b4bfc785b61077aa75165d078bc94f041c..389dc32ff0af3682e950bb9f7a4f3eb721a9b327 100644 (file)
@@ -1,5 +1,7 @@
 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)
index 49c35770dd7beb46a97041a1e1b50554504f54e7..3360600fbffa675dce03d76bf42dcca562e39eb6 100644 (file)
@@ -1340,16 +1340,6 @@ ENDPOS is encountered."
            (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."