aboutsummaryrefslogtreecommitdiffstats
path: root/indent.sh
diff options
context:
space:
mode:
authormzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2010-01-20 11:06:21 +0000
committermzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2010-01-20 11:06:21 +0000
commit7f823fa243530072bfb6cd451c56886b0c3c3bfa (patch)
treef82efd017ce96d6b280fe5401192ec82846a6f51 /indent.sh
parent04562ff4b758f446c9ce4d99234f359ebf4f3651 (diff)
downloadlcd4linux-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
Diffstat (limited to 'indent.sh')
-rwxr-xr-xindent.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/indent.sh b/indent.sh
index c4adcf0..cadc14d 100755
--- a/indent.sh
+++ b/indent.sh
@@ -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