summaryrefslogtreecommitdiff
path: root/scripts/astyle.sh
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:44 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:44 +0200
commitb3a99e6e15af3be25394e66d1138bb2682f565c3 (patch)
tree0206b0018cd075cc8b0d8d4f34a1d27c38598f36 /scripts/astyle.sh
parent5b7605790328c6c0f473296df444d0f4a79ac779 (diff)
tagging ychat-0.5.5ychat-0.5.5
Diffstat (limited to 'scripts/astyle.sh')
-rwxr-xr-xscripts/astyle.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/astyle.sh b/scripts/astyle.sh
index 4376887..757364e 100755
--- a/scripts/astyle.sh
+++ b/scripts/astyle.sh
@@ -1,5 +1,6 @@
#!/bin/sh
-# The yChat Project (2004)
+
+# The yChat Project (2004, 2005)
#
# This uses "astyle" to format C++ code into a specific code style!
@@ -8,7 +9,7 @@ do
for i in `find . -name "*.$f"`
do
echo $i
- astyle --style=gnu $i
+ astyle --style=ansi -s2 $i
rm -f $i.orig
done
done