diff options
author | mzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2010-01-20 11:06:21 +0000 |
---|---|---|
committer | mzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2010-01-20 11:06:21 +0000 |
commit | 7f823fa243530072bfb6cd451c56886b0c3c3bfa (patch) | |
tree | f82efd017ce96d6b280fe5401192ec82846a6f51 | |
parent | 04562ff4b758f446c9ce4d99234f359ebf4f3651 (diff) | |
download | lcd4linux-7f823fa243530072bfb6cd451c56886b0c3c3bfa.tar.gz |
indent.sh: ignore indentation profiles, so things are not messed up accidentally
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1089 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
-rwxr-xr-x | indent.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -6,9 +6,10 @@ # -kr Use Kernighan & Ritchie coding style. # -l120 Set maximum line length for non-comment lines to 150. +# -npro Do not read ‘.indent.pro’ files. rm *.c~ *.h~ -indent -kr -l120 *.c *.h +indent -kr -l120 -npro *.c *.h for i in *.c *.h; do if !(diff -q $i $i~); then |