el/dot-emacs.el: Move the indentation settings further down.
authorMark Wooding <mdw@distorted.org.uk>
Wed, 1 Jul 2020 18:48:22 +0000 (19:48 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sun, 9 Aug 2020 03:34:42 +0000 (04:34 +0100)
There's more of this to come.

el/dot-emacs.el

index c53beff..374b59d 100644 (file)
@@ -4265,10 +4265,6 @@ that character only to be normal punctuation.")
   (make-local-variable 'lisp-indent-function)
   (setq lisp-indent-function 'common-lisp-indent-function))
 
-(setq-default lisp-simple-loop-indentation 2
-             lisp-loop-keyword-indentation 6
-             lisp-loop-forms-indentation 6)
-
 (defmacro mdw-advise-hyperspec-lookup (func args)
   `(defadvice ,func (around mdw-browse-w3m ,args activate compile)
      (if (fboundp 'w3m)
@@ -4308,6 +4304,12 @@ that character only to be normal punctuation.")
              (list "\\(\\s.\\|\\s(\\|\\s)\\|\\s\\\\|\\s/\\)"
                    '(0 mdw-punct-face)))))
 
+;; Special indentation.
+
+(setq-default lisp-simple-loop-indentation 2
+             lisp-loop-keyword-indentation 6
+             lisp-loop-forms-indentation 6)
+
 ;; SLIME setup.
 
 (defvar mdw-friendly-name "[mdw]"