diff lisp/emacs-lisp/lisp-mode.el @ 104303:bd9adfb1acc9

(lisp-indent-region): Remove unused function.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Sun, 16 Aug 2009 15:40:50 +0000
parents 1b791c5d1cee
children 273e528a9f9b b866a533c9f3
line wrap: on
line diff
--- 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."