From 84a086a603aa770f4b2b47b3c8c2f457c89f5c3d Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sun, 3 Oct 2021 14:53:51 +0100 Subject: [PATCH] el/dot-emacs.el: Move the comment indentation weirdness to Alec-emulation. This isn't a good look. --- el/dot-emacs.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/el/dot-emacs.el b/el/dot-emacs.el index f164c40..8a0abb9 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -2208,14 +2208,14 @@ set." (mdw-define-c-style mdw-trustonic-c (mdw-c) (c-basic-offset . 4) - (c-indent-comment-alist (anchored-comment . (column . 0)) - (end-block . (space . 1)) - (cpp-end-block . (space . 1)) - (other . (space . 1))) (c-offsets-alist (access-label . -2))) (mdw-define-c-style mdw-trustonic-alec-c (mdw-trustonic-c) (comment-column . 0) + (c-indent-comment-alist (anchored-comment . (column . 0)) + (end-block . (space . 1)) + (cpp-end-block . (space . 1)) + (other . (space . 1))) (c-offsets-alist (arglist-cont-nonempty . mdw-c-indent-arglist-nested))) (defun mdw-set-default-c-style (modes style) -- 2.11.0