summaryrefslogtreecommitdiff
path: root/scripts/astyle.sh
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:48 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:48 +0200
commitd9c4a95345bd758e45196b29368bd2ff0f2790e3 (patch)
tree8e7aa76f3f2a3a064f440f7410e4ec01cd34a78f /scripts/astyle.sh
parentd4c9f10efe815af146438cafb694d16da0e5650a (diff)
tagging ychat-0.5.2ychat-0.5.2
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