Changes between Version 3 and Version 4 of Hacking
- Timestamp:
- 02/15/11 17:57:32 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Hacking
v3 v4 1 1 2 2 == Code Style == 3 4 * Maximum Line Width is 100 Characters 5 The reason is not about people with low-res screens but rather sticking to 100 columns prevents you from easily nesting more than one level of if statements or other code blocks. 6 7 * Use 4 Space Tabs to Indent 8 With whitespace fillers. 9 10 * No Trailing Whitespace 11 12 * Follow the GNU-Style guidelines. We won't go through all of them here. 13 3 14 4 15 Please use the same indentation as other developers.