]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/emacs-lisp/easy-mmode.el (define-minor-mode): Set `indent' to 1.
authorOleh Krehel <ohwoeowho@gmail.com>
Tue, 27 Jan 2015 10:20:53 +0000 (11:20 +0100)
committerOleh Krehel <ohwoeowho@gmail.com>
Fri, 30 Jan 2015 16:32:29 +0000 (17:32 +0100)
lisp/ChangeLog
lisp/emacs-lisp/easy-mmode.el

index c5da87075f36b9debbe9e64b4f19060f1ee3a1e8..f285288eb305830b10ab1412c739ece1ed67a698 100644 (file)
@@ -1,3 +1,7 @@
+2015-01-30  Oleh Krehel  <ohwoeowho@gmail.com>
+
+       * emacs-lisp/easy-mmode.el (define-minor-mode): Set `indent' to 1.
+
 2015-01-30  Michal Nazarewicz  <mina86@mina86.com>
 
        * lisp/files.el (save-buffers-kill-emacs): If `confirm-kill-emacs'
index 7e6f56518a24e3057c912e0e1d595f9b324bf024..f7e8619948a2039507d4de5daa4b84d5f5fe27d3 100644 (file)
@@ -149,11 +149,12 @@ For example, you could write
     ...BODY CODE...)"
   (declare (doc-string 2)
            (debug (&define name string-or-null-p
-                          [&optional [&not keywordp] sexp
-                           &optional [&not keywordp] sexp
-                           &optional [&not keywordp] sexp]
-                          [&rest [keywordp sexp]]
-                          def-body)))
+                           [&optional [&not keywordp] sexp
+                            &optional [&not keywordp] sexp
+                            &optional [&not keywordp] sexp]
+                           [&rest [keywordp sexp]]
+                           def-body))
+           (indent 1))
 
   ;; Allow skipping the first three args.
   (cond