summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--giscanner/sectionparser.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/giscanner/sectionparser.py b/giscanner/sectionparser.py
index 9637c0e5..0b013be1 100644
--- a/giscanner/sectionparser.py
+++ b/giscanner/sectionparser.py
@@ -78,6 +78,10 @@ def parse_sections_file(lines):
current_section.subsections.append(current_subsection)
continue
+ if line.startswith("<") and line.endswith(">"):
+ # Other directive to gtk-doc, not a symbol.
+ continue
+
current_subsection.symbols.append(line)
return SectionsFile(sections)