From: Oleh Krehel Date: Tue, 27 Jan 2015 10:20:53 +0000 (+0100) Subject: lisp/emacs-lisp/easy-mmode.el (define-minor-mode): Set `indent' to 1. X-Git-Tag: emacs-25.0.90~2572^2~11 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b1e3d14845517bfa9fa5d6d3840f3ab3160306fd;p=emacs.git lisp/emacs-lisp/easy-mmode.el (define-minor-mode): Set `indent' to 1. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c5da87075f3..f285288eb30 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2015-01-30 Oleh Krehel + + * emacs-lisp/easy-mmode.el (define-minor-mode): Set `indent' to 1. + 2015-01-30 Michal Nazarewicz * lisp/files.el (save-buffers-kill-emacs): If `confirm-kill-emacs' 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