From 1ea28a5823ffcbf10e986469e97264265e43e16f Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Thu, 11 Jul 2024 21:54:52 +0200 Subject: [PATCH] Revert Lisp indentation back to Emacs standard MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit With `common-lisp-indent-function`, the indentation of `while` was not correct – oops. This change will break some current indentations, though. Stay tuned. --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index ad759af..85e9390 100644 --- a/init.el +++ b/init.el @@ -2691,7 +2691,7 @@ eventuelly be set to nil, however)." (use-package lisp-mode :mode (("\\.cl\\'" . lisp-mode) ("\\.lisp\\'" . lisp-mode)) - :init (setq lisp-indent-function #'common-lisp-indent-function)) + :init (setq lisp-indent-function #'lisp-indent-function)) (use-package lispy :ensure t