GNOME Bugzilla – Bug 794182
private_header regex is broken
Last modified: 2018-03-19 19:03:14 UTC
The private header check now (both in 1.27 and master) looks like # If this is a private header, skip it. if re.search(r'%^\s*/\*\s*<\s*private_header\s*>\s*\*/', line): AFAICT with the ‘%’ at the beginning the regex cannot actually match anything. In any case it does not match existing private_header markers. Removing the ‘%’ seems to be the fix.
Yes, fallout from converting to python. Thanks for the report.
commit 35992a3dc0a5a310839c25e800ec8192657231a9 Author: Stefan Sauer <ensonic@users.sf.net> Date: Mon Mar 19 20:01:17 2018 +0100 scan: remove '%' that was missed in converting to py Fixes #794182