Changeset - r18358:e21717cc4b4c
[Not reviewed]
master
0 1 0
rubidium - 13 years ago 2011-11-13 17:11:42
rubidium@openttd.org
(svn r23204) -Fix (r23201): if you rename a constant, then also rename it in the helper scripts that use it
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
src/ai/api/squirrel_export.awk
Show inline comments
 
@@ -102,9 +102,9 @@ BEGIN {
 
/^(	*)private/   { if (cls_level == 1) public = "false"; next; }
 

	
 
# Ignore special doxygen blocks
 
/^#ifndef DOXYGEN_SKIP/          { doxygen_skip = "next"; next; }
 
/^#ifdef DOXYGEN_SKIP/           { doxygen_skip = "true"; next; }
 
/^#endif \/\* DOXYGEN_SKIP \*\// { doxygen_skip = "false"; next; }
 
/^#ifndef DOXYGEN_AI_DOCS/          { doxygen_skip = "next"; next; }
 
/^#ifdef DOXYGEN_AI_DOCS/           { doxygen_skip = "true"; next; }
 
/^#endif \/\* DOXYGEN_AI_DOCS \*\// { doxygen_skip = "false"; next; }
 
/^#else/                         {
 
	if (doxygen_skip == "next") {
 
		doxygen_skip = "true";
0 comments (0 inline, 0 general)