On Jan 6, 2016 10:38 AM, "Oleh Krehel" <ohwoeowho@gmail.com> wrote:
>
> Leo Liu <sdl.web@gmail.com> writes:
>
> > Secondly those forms already indent correctly without introducing
> > (indent 1)
>
> Not true. Here's the indentation without an indent spec:
>
> (define-minor-mode ace-window-display-mode
>     "Minor mode for showing the ace window key in the mode line."
>   :global t)
>
> Here's the correct indentation with (indent 1) spec:
>
> (define-minor-mode ace-window-display-mode
>   "Minor mode for showing the ace window key in the mode line."
>   :global t)
>
> This applies when (setq lisp-indent-function 'common-lisp-indent-function)
> is used.

What if you set the indent spec to defun? Does that work?