Gmane
From: Linux Kernel Mailing List <linux-kernel <at> vger.kernel.org>
Subject: CodingStyle: relax the 80-cole rule
Newsgroups: gmane.linux.kernel.commits.head
Date: 2007-10-17 16:01:45 GMT (1 year, 37 weeks, 1 day, 21 hours and 27 minutes ago)
Gitweb:     http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=dff4982f5cd4e30e2a140a3bca95d8814115bf5b
Commit:     dff4982f5cd4e30e2a140a3bca95d8814115bf5b
Parent:     9c6cdad7fee1630941cdd9d74ec310632a9e5c93
Author:     Alan Cox <alan <at> lxorguk.ukuu.org.uk>
AuthorDate: Tue Oct 16 23:27:33 2007 -0700
Committer:  Linus Torvalds <torvalds <at> woody.linux-foundation.org>
CommitDate: Wed Oct 17 08:42:55 2007 -0700

    CodingStyle: relax the 80-cole rule

    I would suggest this change to make CodingStyle properly reflect the style
    used by the kernel, rather than the current wording which is wishful
    thinking and misleading, and comes from the same school of thought that
    gets off on prescriptive grammar, latin and comp.std.c

    Signed-off-by: Alan Cox <alan <at> redhat.com>
    Signed-off-by: Andrew Morton <akpm <at> linux-foundation.org>
    Signed-off-by: Linus Torvalds <torvalds <at> linux-foundation.org>
---
 Documentation/CodingStyle |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/Documentation/CodingStyle b/Documentation/CodingStyle
index 7f1730f..6caa146 100644
--- a/Documentation/CodingStyle
+++ b/Documentation/CodingStyle
@@ -77,12 +77,15 @@ Get a decent editor and don't leave whitespace at the end of lines.
 Coding style is all about readability and maintainability using commonly
 available tools.

-The limit on the length of lines is 80 columns and this is a hard limit.
+The limit on the length of lines is 80 columns and this is a strongly
+preferred limit.

 Statements longer than 80 columns will be broken into sensible chunks.
 Descendants are always substantially shorter than the parent and are placed
 substantially to the right. The same applies to function headers with a long
-argument list. Long strings are as well broken into shorter strings.
+argument list. Long strings are as well broken into shorter strings. The
+only exception to this is where exceeding 80 columns significantly increases
+readability and does not hide information.

 void fun(int a, int b, int c)
 {