Changes between Version 22 and Version 23 of Hacking
- Timestamp:
- 11/02/12 09:55:27 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Hacking
v22 v23 11 11 12 12 To format the code, use the '''indent''' utility with following options: 13 14 indent --gnu-style 15 --format-first-column-comments 16 --indent-level4 17 --brace-indent0 18 --line-length100 19 --no-tabs 20 --blank-lines-after-procedures 13 {{{ 14 indent \ 15 --gnu-style \ 16 --format-first-column-comments \ 17 --indent-level4 \ 18 --brace-indent0 \ 19 --line-length100 \ 20 --no-tabs \ 21 --blank-lines-after-procedures 22 }}} 21 23 22 24 or in short notation: 23 25 26 {{{ 24 27 indent -gnu -fc1 -i4 -bli0 -nut -bap -l100 28 }}} 25 29 26 30 == Programming Tips ==