Changes between Version 22 and Version 23 of Hacking


Ignore:
Timestamp:
11/02/12 09:55:27 (11 years ago)
Author:
andrew_b
Comment:

Formatting

Legend:

Unmodified
Added
Removed
Modified
  • Hacking

    v22 v23  
    1111 
    1212To 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{{{ 
     14indent \ 
     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}}} 
    2123 
    2224or in short notation: 
    2325 
     26{{{ 
    2427indent -gnu -fc1 -i4 -bli0 -nut -bap -l100 
     28}}} 
    2529 
    2630== Programming Tips ==