diff --git a/auto/bin/parse_spec.pl b/auto/bin/parse_spec.pl index 445bdf3..3cd3819 100755 --- a/auto/bin/parse_spec.pl +++ b/auto/bin/parse_spec.pl @@ -140,6 +140,7 @@ sub normalize_prototype local $_ = join(" ", @_); s/\s+/ /g; # multiple whitespace -> single space s/\<.*\>//g; # remove from direct state access extension + s/\<.*$//g; # remove incomplete from direct state access extension s/\s*\(\s*/ \(/; # exactly one space before ( and none after s/\s*\)\s*/\)/; # no after before or after ) s/\s*\*([a-zA-Z])/\* $1/; # "* identifier"