* lisp/progmodes/c-ts-mode.el (c-ts-mode--simple-indent-rules):
Use standalone-parent instead of parent.
* test/lisp/progmodes/c-ts-mode-resources/indent.erts:
New test.
(cherry picked from commit
04032cd00af7617c709140f3c80b5604b05c11e8)
"enum_specifier"
"function_declarator"
"template_declaration")))
- parent 0)
+ standalone-parent 0)
;; This is for the trailing-star stype: int *
;; func()
((match "function_declarator" nil "declarator") parent-bol 0)
};
=-=-=
+Name: typedef with struct definition (bug#75442)
+
+=-=
+typedef struct Point
+{
+ int x;
+ int y;
+} Point;
+=-=-=
+
Name: Multiline Parameter List (bug#60398)
=-=