diff options
author | Oleh Krehel <ohwoeowho@gmail.com> | 2015-01-27 11:20:53 +0100 |
---|---|---|
committer | Oleh Krehel <ohwoeowho@gmail.com> | 2015-01-30 17:32:29 +0100 |
commit | b1e3d14845517bfa9fa5d6d3840f3ab3160306fd (patch) | |
tree | 6d8f38ec49ae5ed3a0d711b16707224d44a6469c /lisp/emacs-lisp | |
parent | 5a971bd30207a3bb7038ee7870abf7c4c4e99dc1 (diff) | |
download | emacs-b1e3d14845517bfa9fa5d6d3840f3ab3160306fd.tar.gz emacs-b1e3d14845517bfa9fa5d6d3840f3ab3160306fd.tar.bz2 emacs-b1e3d14845517bfa9fa5d6d3840f3ab3160306fd.zip |
lisp/emacs-lisp/easy-mmode.el (define-minor-mode): Set `indent' to 1.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/easy-mmode.el | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index 7e6f56518a2..f7e8619948a 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el @@ -149,11 +149,12 @@ For example, you could write ...BODY CODE...)" (declare (doc-string 2) (debug (&define name string-or-null-p - [&optional [¬ keywordp] sexp - &optional [¬ keywordp] sexp - &optional [¬ keywordp] sexp] - [&rest [keywordp sexp]] - def-body))) + [&optional [¬ keywordp] sexp + &optional [¬ keywordp] sexp + &optional [¬ keywordp] sexp] + [&rest [keywordp sexp]] + def-body)) + (indent 1)) ;; Allow skipping the first three args. (cond |