diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-04-18 15:09:36 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-04-18 15:09:36 +0000 |
commit | 6f26dfa51fa6a9308fbfc815e8bd1742180b8bc3 (patch) | |
tree | 5abc3297b22948d2adcb30bc1ac5131543319765 /lisp/emacs-lisp | |
parent | c825bc6665e5e7705e3018ecdf57b762a4b1ebd1 (diff) | |
download | emacs-6f26dfa51fa6a9308fbfc815e8bd1742180b8bc3.tar.gz emacs-6f26dfa51fa6a9308fbfc815e8bd1742180b8bc3.tar.bz2 emacs-6f26dfa51fa6a9308fbfc815e8bd1742180b8bc3.zip |
(toplevel): Comment out the spec
for defmethod.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-indent.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cl-indent.el b/lisp/emacs-lisp/cl-indent.el index 359288ebf05..e0357cd5997 100644 --- a/lisp/emacs-lisp/cl-indent.el +++ b/lisp/emacs-lisp/cl-indent.el @@ -1,6 +1,6 @@ ;;; cl-indent.el --- enhanced lisp-indent mode -;; Copyright (C) 1987 Free Software Foundation, Inc. +;; Copyright (C) 1987, 2000, 2001 Free Software Foundation, Inc. ;; Author: Richard Mlynarik <mly@eddie.mit.edu> ;; Created: July 1987 @@ -393,7 +393,9 @@ by `lisp-body-indent'." (define-setf-method . defun) (define-setf-expander . defun) (defmacro . defun) (defsubst . defun) (deftype . defun) - (defmethod (4 4 (&whole 4 &rest 1) &body)) + ;; The following indents the first line of the body of a + ;; defmethod wrong. + ;(defmethod (4 4 (&whole 4 &rest 1) &body)) (defpackage (4 2)) (defstruct ((&whole 4 &rest (&whole 2 &rest 1)) &rest (&whole 2 &rest 1))) |