aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-12-04 17:05:57 +0000
committerDave Love2000-12-04 17:05:57 +0000
commit968880c416332dc6fc8ec2efeba004b36f5d87c9 (patch)
tree10605ac7f955c914bb5aedb10d545a7dcd61e862
parent6452929eab47b5cacc38a48b4cdc1309f535018f (diff)
downloademacs-968880c416332dc6fc8ec2efeba004b36f5d87c9.tar.gz
emacs-968880c416332dc6fc8ec2efeba004b36f5d87c9.zip
Remove erroneous spec for condition-case.
-rw-r--r--lisp/emacs-lisp/cl-indent.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cl-indent.el b/lisp/emacs-lisp/cl-indent.el
index c74b5d66d51..359288ebf05 100644
--- a/lisp/emacs-lisp/cl-indent.el
+++ b/lisp/emacs-lisp/cl-indent.el
@@ -377,7 +377,6 @@ by `lisp-body-indent'."
377(let ((l '((block 1) 377(let ((l '((block 1)
378 (case (4 &rest (&whole 2 &rest 1))) 378 (case (4 &rest (&whole 2 &rest 1)))
379 (ccase . case) (ecase . case) 379 (ccase . case) (ecase . case)
380 (condition-case ((1 4) (&whole 2 ((0 1) (1 3) (2 &body)))))
381 (typecase . case) (etypecase . case) (ctypecase . case) 380 (typecase . case) (etypecase . case) (ctypecase . case)
382 (catch 1) 381 (catch 1)
383 (cond (&rest (&whole 2 &rest 1))) 382 (cond (&rest (&whole 2 &rest 1)))
@@ -491,8 +490,10 @@ by `lisp-body-indent'."
491 490
492;(put 'with-restart 'common-lisp-indent-function '((1 4 ((* 1))) (2 &body))) 491;(put 'with-restart 'common-lisp-indent-function '((1 4 ((* 1))) (2 &body)))
493;(put 'restart-case 'common-lisp-indent-function '((1 4) (* 2 ((0 1) (* 1))))) 492;(put 'restart-case 'common-lisp-indent-function '((1 4) (* 2 ((0 1) (* 1)))))
494;(put 'define-condition 'common-lisp-indent-function '((1 6) (2 6 ((* 1))) (3 4 ((* 1))) (4 &body))) 493;(put 'define-condition 'common-lisp-indent-function '((1 6) (2 6 ((&whole 1))) (3 4 ((&whole 1))) (4 &body)))
495;(put 'with-condition-handler 'common-lisp-indent-function '((1 4 ((* 1))) (2 &body))) 494;(put 'with-condition-handler 'common-lisp-indent-function '((1 4 ((* 1))) (2 &body)))
496;(put 'condition-case 'common-lisp-indent-function '((1 4) (* 2 ((0 1) (1 3) (2 &body))))) 495;(put 'condition-case 'common-lisp-indent-function '((1 4) (* 2 ((0 1) (1 3) (2 &body)))))
496;(put 'defclass 'common-lisp-indent-function '((&whole 2 &rest (&whole 2 &rest 1) &rest (&whole 2 &rest 1)))
497;(put 'defgeneric 'common-lisp-indent-function 'defun)
497 498
498;;; cl-indent.el ends here 499;;; cl-indent.el ends here