changeset 13187:d6ca690b0fcf draft

(svn r17694) -Codechange: don't break $ to two lines in squirrel_export.awk
author smatz <smatz@openttd.org>
date Sun, 04 Oct 2009 17:26:43 +0000
parents afdfdda87cd4
children eadb385b4efd
files src/ai/api/squirrel_export.awk
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/ai/api/squirrel_export.awk
+++ b/src/ai/api/squirrel_export.awk
@@ -55,9 +55,8 @@
 }
 
 /@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."