glib-mkenums: pick up /*< nick=xyz >*/ annotation again

... in glib-mkenums python port.

Was parsed correctly but then skipped due to inverted condition.

https://bugzilla.gnome.org/show_bug.cgi?id=779332
This commit is contained in:
Tim-Philipp Müller 2017-06-26 23:50:01 +01:00 committed by Matthias Clasen
parent 4268372fae
commit dbf0a56670

View File

@ -131,7 +131,7 @@ def parse_entries(file, file_name):
if options is not None:
options = parse_trigraph(options)
if 'skip' in options:
if 'skip' not in options:
entries.append((name, value, options['nick']));
else:
entries.append((name, value))