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 | 5822e9e57f38a096e5bb788de992e1e9cd1cc47d (patch) | |
tree | 243558a5085f545c15e006c4072a5622633447d3 /docs/CodingStandards.html | |
parent | 6177fd4fcee4d82692c47e33754ffe285c38cc69 (diff) | |
download | external_llvm-5822e9e57f38a096e5bb788de992e1e9cd1cc47d.zip external_llvm-5822e9e57f38a096e5bb788de992e1e9cd1cc47d.tar.gz external_llvm-5822e9e57f38a096e5bb788de992e1e9cd1cc47d.tar.bz2 |
clarify :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53218 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CodingStandards.html')
-rw-r--r-- | docs/CodingStandards.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/CodingStandards.html b/docs/CodingStandards.html index a99e46e..04ce54f 100644 --- a/docs/CodingStandards.html +++ b/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> <!-- _______________________________________________________________________ --> |