aboutsummaryrefslogtreecommitdiffstats
path: root/indent.sh
diff options
context:
space:
mode:
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