]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix indentation for else clause in c-ts-mode (bug#67417)
authorYuan Fu <casouri@gmail.com>
Mon, 27 Nov 2023 00:38:41 +0000 (16:38 -0800)
committerYuan Fu <casouri@gmail.com>
Mon, 27 Nov 2023 01:17:35 +0000 (17:17 -0800)
* lisp/progmodes/c-ts-mode.el:
(c-ts-mode--indent-styles): Add indentation for children of
else_clause.
* test/lisp/progmodes/c-ts-mode-resources/indent.erts:
(Name): Add test for else-break.  Also make the test such that it
needs to indent correctly from scratch (rather than maintaining the
already correct indentation.)

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

index 8660b65f309fe28d1ca0fe85d595754860a7a56a..5975057518e62e16deebccf4bc417b7b8d3e5814 100644 (file)
@@ -452,6 +452,7 @@ MODE is either `c' or `cpp'."
            ;; These rules are for cases where the body is bracketless.
            ;; Tested by the "Bracketless Simple Statement" test.
            ((parent-is "if_statement") standalone-parent c-ts-mode-indent-offset)
+           ((parent-is "else_clause") standalone-parent c-ts-mode-indent-offset)
            ((parent-is "for_statement") standalone-parent c-ts-mode-indent-offset)
            ((parent-is "while_statement") standalone-parent c-ts-mode-indent-offset)
            ((parent-is "do_statement") standalone-parent c-ts-mode-indent-offset)
index 221b3d809af0a6662c5143052b26646e96a916a5..bac76fb7378b795a190c2b94b892bcdb75941bef 100644 (file)
@@ -149,6 +149,21 @@ for (int i = 0;
 
 Name: Bracketless Simple Statement
 
+=-=
+for (int i = 0; i < 5; i++)
+continue;
+
+while (true)
+return 1;
+
+do
+i++;
+while (true)
+
+if (true)
+break;
+else
+break;
 =-=
 for (int i = 0; i < 5; i++)
   continue;
@@ -159,6 +174,11 @@ while (true)
 do
   i++;
 while (true)
+
+if (true)
+  break;
+else
+  break;
 =-=-=
 
 Name: Nested If-Else