summaryrefslogtreecommitdiff
path: root/src/ai
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-10-04 17:26:43 +0000
committersmatz <smatz@openttd.org>2009-10-04 17:26:43 +0000
commit854af7d70f95b2549bc3cade83675b839703929a (patch)
tree9eed6a4c4eb9c263c312175da8b29be19408ca16 /src/ai
parentd6cded53803de692eebc6dd41e9648f3399c9f7d (diff)
downloadopenttd-854af7d70f95b2549bc3cade83675b839703929a.tar.xz
(svn r17694) -Codechange: don't break $ to two lines in squirrel_export.awk
Diffstat (limited to 'src/ai')
-rw-r--r--src/ai/api/squirrel_export.awk5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ai/api/squirrel_export.awk b/src/ai/api/squirrel_export.awk
index b9ea9e519..3f57ff7d7 100644
--- a/src/ai/api/squirrel_export.awk
+++ b/src/ai/api/squirrel_export.awk
@@ -55,9 +55,8 @@ BEGIN {
}
/@file/ {
- # Break it in two lines, so SVN doesn't replace it
- printf "/* $I"
- print "d$ */"
+ # Break it, so SVN doesn't replace it
+ print "/* $I" "d$ */"
print ""
print "/*"
print " * This file is part of OpenTTD."