I am just curious on how much further software development "fun" the recent update
by a topic like "CodingStyle: Clarify and complete chapter 7" will trigger.
I don't want to drag this thread onwards for (way) too long, but clearly "it is
advised to indent labels with a single space (not tab)" (from diff in above commit)
How do you think about the reason (which you omitted from your quotation) for this advice?
“…,
so that "diff -p" does not confuse labels with functions.
…”
[...]doesn't really reflect the majority of kernel practice we have in-tree today and
actually rather adds more confusion than any clarification whatsoever:
$ git grep -n "^\ [a-z_]*:" -- '*.[ch]' | wc -l
4919
$ git grep -n "^[a-z_]*:" -- '*.[ch]' | wc -l
54686
So there is a mixture already.
In which ways would you prefer that the style specifications should be
clarified further?
Where should source code become more consistent?