From 037be6ded1d24fbf9db7c539371209b95db38c10 Mon Sep 17 00:00:00 2001 Message-Id: <037be6ded1d24fbf9db7c539371209b95db38c10.1717816592.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 8 Mar 2009 15:59:56 +0000 Subject: [PATCH] dot-emacs: Fix indentation for simple LOOP. Organization: Straylight/Edgeware From: Mark Wooding --- dot-emacs.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot-emacs.el b/dot-emacs.el index 01bed92..14d06a6 100644 --- a/dot-emacs.el +++ b/dot-emacs.el @@ -2052,7 +2052,7 @@ (defun mdw-common-lisp-indent () (make-variable-buffer-local 'lisp-indent-function) (setq lisp-indent-function 'common-lisp-indent-function)) -(setq lisp-simple-loop-indentation 1 +(setq lisp-simple-loop-indentation 2 lisp-loop-keyword-indentation 6 lisp-loop-forms-indentation 6) -- [mdw]