X-Git-Url: http://ftp.safe.ca/?a=blobdiff_plain;f=Documentation%2FCodingStyle;fp=Documentation%2FCodingStyle;h=00bffa7b740ee3b081386811c81815be4a615058;hb=a923fd6ae7599aee63934ed13c3033fdefc7a18e;hp=b49b92edb396835632781470f18bb31ab0055387;hpb=9e8c4273ef4f631a896650bd2ade4c1b6487131b;p=safe%2Fjmp%2Flinux-2.6 diff --git a/Documentation/CodingStyle b/Documentation/CodingStyle index b49b92e..00bffa7 100644 --- a/Documentation/CodingStyle +++ b/Documentation/CodingStyle @@ -218,6 +218,18 @@ no space after the prefix increment & decrement unary operators: and no space around the '.' and "->" structure member operators. +Do not leave trailing whitespace at the ends of lines. Some editors with +"smart" indentation will insert whitespace at the beginning of new lines as +appropriate, so you can start typing the next line of code right away. +However, some such editors do not remove the whitespace if you end up not +putting a line of code there, such as if you leave a blank line. As a result, +you end up with lines containing trailing whitespace. + +Git will warn you about patches that introduce trailing whitespace, and can +optionally strip the trailing whitespace for you; however, if applying a series +of patches, this may make later patches in the series fail by changing their +context lines. + Chapter 4: Naming