summaryrefslogtreecommitdiff
path: root/giscanner/girwriter.py
diff options
context:
space:
mode:
Diffstat (limited to 'giscanner/girwriter.py')
-rw-r--r--giscanner/girwriter.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/giscanner/girwriter.py b/giscanner/girwriter.py
index a450bb19..d3b023aa 100644
--- a/giscanner/girwriter.py
+++ b/giscanner/girwriter.py
@@ -154,7 +154,9 @@ and/or use gtk-doc annotations. ''')
attrs = [('name', alias.name)]
if alias.ctype is not None:
attrs.append(('c:type', alias.ctype))
+ self._append_node_generic(alias, attrs)
with self.tagcontext('alias', attrs):
+ self._write_generic(alias)
self._write_type(alias.target)
def _write_callable(self, callable, tag_name, extra_attrs):