summaryrefslogtreecommitdiff
path: root/src/script/api/doxygen_filter.awk
diff options
context:
space:
mode:
Diffstat (limited to 'src/script/api/doxygen_filter.awk')
-rw-r--r--src/script/api/doxygen_filter.awk4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/script/api/doxygen_filter.awk b/src/script/api/doxygen_filter.awk
index f699756da..bf03aa0f8 100644
--- a/src/script/api/doxygen_filter.awk
+++ b/src/script/api/doxygen_filter.awk
@@ -144,6 +144,10 @@ BEGIN {
{
if (comment == "true" && !match($0, /@api/))
{
+ if (match($0, /@game /) && api != "GS") next;
+ if (match($0, /@ai /) && api != "AI") next;
+ gsub("@game ", "", $0);
+ gsub("@ai ", "", $0);
comment_buffer = comment_buffer $0 "\n"; next;
}
}