]> git.eshelyaron.com Git - emacs.git/commitdiff
Add missing indent rule for c-ts-mode
authorYuan Fu <casouri@gmail.com>
Tue, 21 Mar 2023 23:24:29 +0000 (16:24 -0700)
committerYuan Fu <casouri@gmail.com>
Tue, 21 Mar 2023 23:24:29 +0000 (16:24 -0700)
* lisp/progmodes/c-ts-mode.el (c-ts-mode--indent-styles): New rule for case.
* test/lisp/progmodes/c-ts-mode-resources/indent.erts: New test.

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

index 659db46dc129793bd2e77cfa203c49c0dacb6913..f70869c10bb6ee7078c6d17d20e09e8c9fa86d51 100644 (file)
@@ -434,6 +434,8 @@ MODE is either `c' or `cpp'."
            ((parent-is "while_statement") standalone-parent c-ts-mode-indent-offset)
            ((parent-is "do_statement") standalone-parent c-ts-mode-indent-offset)
 
+           ((parent-is "case_statement") standalone-parent c-ts-mode-indent-offset)
+
            ,@(when (eq mode 'cpp)
                `(((node-is "field_initializer_list") parent-bol ,(* c-ts-mode-indent-offset 2)))))))
     `((gnu
index 9e28ef203fdc9e28adb88181aea676eaaf7dc28d..5cdefe2122c9735f23e257919416fbd668730050 100644 (file)
@@ -188,6 +188,36 @@ int main()
 }
 =-=-=
 
+Name: Switch-Case statement
+
+=-=
+int main() {
+switch (a) {
+case 1:
+b = c;
+return 10;
+case 2:
+{
+a = b;
+return 12
+}
+}
+}
+=-=
+int main() {
+  switch (a) {
+  case 1:
+    b = c;
+    return 10;
+  case 2:
+    {
+      a = b;
+      return 12
+    }
+  }
+}
+=-=-=
+
 Name: Multiline Block Comments 1 (bug#60270)
 
 =-=