aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJeff Mahoney <jeffm@suse.com>2005-07-13 11:55:42 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-07-13 10:28:43 -0700
commitc0ac515e2951dd2a999cfd21dea3fdc1055f1573 (patch)
treecb4f8124f9302c3ad02037451b89fe98dca6b4ed /scripts
parentMerge /home/torvalds/linux-2.6-arm (diff)
downloadlinux-dev-c0ac515e2951dd2a999cfd21dea3fdc1055f1573.tar.xz
linux-dev-c0ac515e2951dd2a999cfd21dea3fdc1055f1573.zip
[PATCH] Lindent: ignore .indent.pro
When I recently submitted a Lindent patch, it turned out that my .indent.pro options were also applied to the tree. This patch directs indent(1) to ignore the .indent.pro directives and only use options specified on the command line. Signed-off-by: Jeff Mahoney <jeffm@suse.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to '')
-rwxr-xr-xscripts/Lindent2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Lindent b/scripts/Lindent
index 34ed785116b6..7d8d8896e309 100755
--- a/scripts/Lindent
+++ b/scripts/Lindent
@@ -1,2 +1,2 @@
#!/bin/sh
-indent -kr -i8 -ts8 -sob -l80 -ss -ncs "$@"
+indent -npro -kr -i8 -ts8 -sob -l80 -ss -ncs "$@"