diff options
author | truebrain <truebrain@openttd.org> | 2011-11-19 15:42:40 +0000 |
---|---|---|
committer | truebrain <truebrain@openttd.org> | 2011-11-19 15:42:40 +0000 |
commit | e9dfd7a8974694dec72f3aeda2e40e125b27062d (patch) | |
tree | c38dade24e35747974ae50d52ab58804be4c7ab1 /src | |
parent | dbd66cf523a1707c6ac2db2d49fda8e5201d91b5 (diff) | |
download | openttd-e9dfd7a8974694dec72f3aeda2e40e125b27062d.tar.xz |
(svn r23262) -Fix: one annoying typo in a squirrel_export marker line
Diffstat (limited to 'src')
-rw-r--r-- | src/ai/ai_instance.cpp | 2 | ||||
-rwxr-xr-x | src/ai/api/squirrel_export.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ai/ai_instance.cpp b/src/ai/ai_instance.cpp index 2333ddd2e..b99b8a108 100644 --- a/src/ai/ai_instance.cpp +++ b/src/ai/ai_instance.cpp @@ -22,7 +22,7 @@ #include "ai_gui.hpp" /* Convert all AI related classes to Squirrel data. - * Note: this line a marker in squirrel_export.sh. Do not change! */ + * Note: this line is a marker in squirrel_export.sh. Do not change! */ #include "api/ai_accounting.hpp.sq" #include "api/ai_airport.hpp.sq" #include "api/ai_base.hpp.sq" diff --git a/src/ai/api/squirrel_export.sh b/src/ai/api/squirrel_export.sh index 90b506b32..5bd05a097 100755 --- a/src/ai/api/squirrel_export.sh +++ b/src/ai/api/squirrel_export.sh @@ -73,7 +73,7 @@ echo " /SQAIController_Register/ { print \$0; next } /SQAI.*_Register/ { next } -/Note: this line a marker in squirrel_export.sh. Do not change!/ { +/Note: this line is a marker in squirrel_export.sh. Do not change!/ { print \$0 gsub(\"^.*/\", \"\") split(\"`grep '^void SQAI.*_Register(Squirrel \*engine)$' *.hpp.sq | sed 's/:.*$//' | sort | uniq | tr -d '\r' | tr '\n' ' '`\", files, \" \") |