]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix c-ts-mode indentation
authorYuan Fu <casouri@gmail.com>
Mon, 6 Feb 2023 01:05:21 +0000 (17:05 -0800)
committerYuan Fu <casouri@gmail.com>
Tue, 7 Feb 2023 02:28:40 +0000 (18:28 -0800)
Turns out I shouldn't have removed the explicit rules.  Anyway, now it
indents properly.

* lisp/progmodes/c-ts-mode.el (c-ts-mode--indent-styles): Add rules.
* test/lisp/progmodes/c-ts-mode-resources/indent.erts: Add tests

lisp/progmodes/c-ts-mode.el
test/lisp/progmodes/c-ts-mode-resources/indent.erts

index 1737b8c5715f723acd63ee3c8e05eab7787e993d..f2d5a482009e540cca87bc1d5a3dbd7bec0e6aec 100644 (file)
@@ -287,6 +287,12 @@ MODE is either `c' or `cpp'."
            ((node-is "compound_statement") point-min c-ts-common-statement-offset)
            ;; Bug#61291.
            ((match "expression_statement" nil "body") point-min c-ts-common-statement-offset)
+           ;; These rules are for cases where the body is bracketless.
+           ;; Tested by the "Bracketless Simple Statement" test.
+           ((parent-is "if_statement") point-min c-ts-common-statement-offset)
+           ((parent-is "for_statement") point-min c-ts-common-statement-offset)
+           ((parent-is "while_statement") point-min c-ts-common-statement-offset)
+           ((parent-is "do_statement") point-min c-ts-common-statement-offset)
 
            ,@(when (eq mode 'cpp)
                `(((node-is "field_initializer_list") parent-bol ,(* c-ts-mode-indent-offset 2)))))))
index 2750526f893069e8464017cecdf12b6e91305c28..8c588f56f9a5f35c111d8f33a7f90a3485284808 100644 (file)
@@ -155,6 +155,20 @@ for (int i = 0;
   ;
 =-=-=
 
+Name: Bracketless Simple Statement
+
+=-=
+for (int i = 0; i < 5; i++)
+  continue;
+
+while (true)
+  return 1;
+
+do
+  i++;
+while (true)
+=-=-=
+
 Name: Multiline Block Comments 1 (bug#60270)
 
 =-=