diff options
author | Leo Liu <sdl.web@gmail.com> | 2016-02-27 13:48:01 +0800 |
---|---|---|
committer | Leo Liu <sdl.web@gmail.com> | 2016-02-27 13:48:43 +0800 |
commit | 098d47bcf735a1a194a155a8d365746a364617d8 (patch) | |
tree | ce4054ee65e0282754e5e5e6aa8eae779d4f6580 /lisp/emacs-lisp | |
parent | b5db8e0461c5f36a8834f8912368ec40ea12d351 (diff) | |
download | emacs-098d47bcf735a1a194a155a8d365746a364617d8.tar.gz emacs-098d47bcf735a1a194a155a8d365746a364617d8.tar.bz2 emacs-098d47bcf735a1a194a155a8d365746a364617d8.zip |
* lisp/emacs-lisp/derived.el (define-derived-mode): Revert indent change.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/derived.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/derived.el b/lisp/emacs-lisp/derived.el index f30271e15fc..19ff7abda39 100644 --- a/lisp/emacs-lisp/derived.el +++ b/lisp/emacs-lisp/derived.el @@ -162,8 +162,7 @@ The new mode runs the hook constructed by the function See Info node `(elisp)Derived Modes' for more details." (declare (debug (&define name symbolp sexp [&optional stringp] [&rest keywordp sexp] def-body)) - (doc-string 4) - (indent 3)) + (doc-string 4)) (when (and docstring (not (stringp docstring))) ;; Some trickiness, since what appears to be the docstring may really be |