diff options
author | Chris Lattner <sabre@nondot.org> | 2008-07-08 05:12:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-07-08 05:12:37 +0000 |
commit | fc12d2e5f33a8da682097f42390d6ef2e324347b (patch) | |
tree | 5d50844ab36b5f2c1cc0ea86ac4f4f91c1f1d9ea /llvm/docs/CodingStandards.html | |
parent | 3c947045ef67a30d2a4400c820b3a9ab912ff92c (diff) | |
download | bcm5719-llvm-fc12d2e5f33a8da682097f42390d6ef2e324347b.tar.gz bcm5719-llvm-fc12d2e5f33a8da682097f42390d6ef2e324347b.zip |
clarify :)
llvm-svn: 53218
Diffstat (limited to 'llvm/docs/CodingStandards.html')
-rw-r--r-- | llvm/docs/CodingStandards.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/llvm/docs/CodingStandards.html b/llvm/docs/CodingStandards.html index a99e46e5b58..04ce54fde47 100644 --- a/llvm/docs/CodingStandards.html +++ b/llvm/docs/CodingStandards.html @@ -262,6 +262,18 @@ implements are defined.</p> like to print out code and look at your code in an xterm without resizing it.</p> +<p>The longer answer is that there must be some limit to the width of the code +in order to reasonably allow developers to have multiple files side-by-side in +windows on a modest display. If you are going to pick a width limit, it is +somewhat arbitrary but you might as well pick something standard. Going with +90 columns (for example) instead of 80 columns wouldn't add any significant +value and would be detrimental to printing out code. Also many other projects +have standardized on 80 columns, so some people have already configured their +editors for it (vs something else, like 90 columns).</p> + +<p>This is one of many contentious issues in coding standards, but is not up +for debate.</p> + </div> <!-- _______________________________________________________________________ --> |