]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix c-ts-mode BSD style indentation
authorYuan Fu <casouri@gmail.com>
Wed, 6 Sep 2023 03:12:19 +0000 (20:12 -0700)
committerEli Zaretskii <eliz@gnu.org>
Thu, 7 Sep 2023 05:07:25 +0000 (08:07 +0300)
* lisp/progmodes/c-ts-mode.el (c-ts-mode--indent-styles):
Add else_clause.

(cherry picked from commit d392a5d3c11b7e7479d31421f8237f29952c909e)

lisp/progmodes/c-ts-mode.el

index 34a89b4dcad6a6eeb8a0412d2e51544f86fc0ea4..48d1fb09089744827d15d65347dde6f48c222606 100644 (file)
@@ -478,6 +478,7 @@ MODE is either `c' or `cpp'."
        ((parent-is "labeled_statement") parent-bol c-ts-mode-indent-offset)
        ((parent-is "compound_statement") parent-bol c-ts-mode-indent-offset)
        ((parent-is "if_statement") parent-bol 0)
+       ((parent-is "else_clause") parent-bol 0)
        ((parent-is "for_statement") parent-bol 0)
        ((parent-is "while_statement") parent-bol 0)
        ((parent-is "switch_statement") parent-bol 0)