From: Mark Wooding Date: Sun, 3 Oct 2021 13:53:51 +0000 (+0100) Subject: el/dot-emacs.el: Move the comment indentation weirdness to Alec-emulation. X-Git-Url: https://git.distorted.org.uk/~mdw/profile/commitdiff_plain/84a086a603aa770f4b2b47b3c8c2f457c89f5c3d el/dot-emacs.el: Move the comment indentation weirdness to Alec-emulation. This isn't a good look. --- 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)