From: Mark Wooding Date: Wed, 1 Jul 2020 18:48:22 +0000 (+0100) Subject: el/dot-emacs.el: Move the indentation settings further down. X-Git-Url: https://git.distorted.org.uk/~mdw/profile/commitdiff_plain/7ab487de6f1c62b87c0a80d6acf36217a276be2d el/dot-emacs.el: Move the indentation settings further down. There's more of this to come. --- diff --git a/el/dot-emacs.el b/el/dot-emacs.el index c53beff..374b59d 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -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]"