From ae4aadb04011412759256475ae9f727eed633cab Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Wed, 1 Jul 2020 19:49:53 +0100 Subject: [PATCH] el/dot-emacs.el: Use plain `setq' rather than `setq-default'. Organization: Straylight/Edgeware From: Mark Wooding I can't see anything trying to make these buffer-local. --- el/dot-emacs.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/el/dot-emacs.el b/el/dot-emacs.el index 374b59d..fce80f4 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -4306,9 +4306,9 @@ (defun mdw-fontify-lispy () ;; Special indentation. -(setq-default lisp-simple-loop-indentation 2 - lisp-loop-keyword-indentation 6 - lisp-loop-forms-indentation 6) +(setq lisp-simple-loop-indentation 2 + lisp-loop-keyword-indentation 6 + lisp-loop-forms-indentation 6) ;; SLIME setup. -- [mdw]