diff options
author | Dieter Verfaillie <dieterv@optionexplicit.be> | 2013-07-29 15:09:59 +0200 |
---|---|---|
committer | Dieter Verfaillie <dieterv@optionexplicit.be> | 2013-10-08 20:54:21 +0200 |
commit | 8adaea7ca3c1771b6553eaede7ca1e5366d21741 (patch) | |
tree | f8c9cb049d677d5b3457396e77dd69af8ea3e71b /giscanner/maintransformer.py | |
parent | 4e48635343409b5647d2b4b3ac59c26bef45fb18 (diff) | |
download | gobject-introspection-8adaea7ca3c1771b6553eaede7ca1e5366d21741.tar.gz |
giscanner: fix parameter name check
It's been impossible to have a TAG_RETURNS in GTK-Doc comment
block parameters for a long while now as we transform those
into valid tags in parse_comment_block()...
Diffstat (limited to 'giscanner/maintransformer.py')
-rw-r--r-- | giscanner/maintransformer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/maintransformer.py b/giscanner/maintransformer.py index c0fc7630..4611fb99 100644 --- a/giscanner/maintransformer.py +++ b/giscanner/maintransformer.py @@ -708,7 +708,7 @@ class MainTransformer(object): for doc_name in unknown: # Skip varargs, see #629759 - if doc_name.lower() in ['...', 'varargs', TAG_RETURNS]: + if doc_name.lower() in ['...', 'varargs']: continue if len(unused) == 0: text = '' |