Skip to content

Commit 6f76b6f

Browse files
joshtripletttorvalds
authored andcommitted
CodingStyle: Document the exception of not splitting user-visible strings, for grepping
Patch reviewers now recommend not splitting long user-visible strings, such as printk messages, even if they exceed 80 columns. This avoids breaking grep. However, that recommendation did not actually appear anywhere in Documentation/CodingStyle. See, for example, the thread at http://news.gmane.org/find-root.php?message_id=%3c1312215262.11635.15.camel%40Joe%2dLaptop%3e Signed-off-by: Josh Triplett <josh@joshtriplett.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 1117f72 commit 6f76b6f

File tree

1 file changed

+7
-16
lines changed

1 file changed

+7
-16
lines changed

Documentation/CodingStyle

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -80,22 +80,13 @@ available tools.
8080
The limit on the length of lines is 80 columns and this is a strongly
8181
preferred limit.
8282

83-
Statements longer than 80 columns will be broken into sensible chunks.
84-
Descendants are always substantially shorter than the parent and are placed
85-
substantially to the right. The same applies to function headers with a long
86-
argument list. Long strings are as well broken into shorter strings. The
87-
only exception to this is where exceeding 80 columns significantly increases
88-
readability and does not hide information.
89-
90-
void fun(int a, int b, int c)
91-
{
92-
if (condition)
93-
printk(KERN_WARNING "Warning this is a long printk with "
94-
"3 parameters a: %u b: %u "
95-
"c: %u \n", a, b, c);
96-
else
97-
next_statement;
98-
}
83+
Statements longer than 80 columns will be broken into sensible chunks, unless
84+
exceeding 80 columns significantly increases readability and does not hide
85+
information. Descendants are always substantially shorter than the parent and
86+
are placed substantially to the right. The same applies to function headers
87+
with a long argument list. However, never break user-visible strings such as
88+
printk messages, because that breaks the ability to grep for them.
89+
9990

10091
Chapter 3: Placing Braces and Spaces
10192

0 commit comments

Comments
 (0)