# HG changeset patch # User Mike Miller # Date 1571253478 25200 # Node ID 466e61c5fb4b20dcdcba54c2024dfbd8883e8d1f # Parent cc023f049dbf718739b74d333d3e911f7a4a394a build: adapt mk-qthelp.pl to changes in Texinfo 6.7 * mk-qthelp.pl: Update regular expression to allow HTML attributes after href to accomodate changes in Texinfo 6.7. diff -r cc023f049dbf -r 466e61c5fb4b doc/interpreter/mk-qthelp.pl --- a/doc/interpreter/mk-qthelp.pl Fri Oct 11 13:07:10 2019 -0400 +++ b/doc/interpreter/mk-qthelp.pl Wed Oct 16 12:17:58 2019 -0700 @@ -34,7 +34,7 @@ { if (/^\s*
  • /) { - ($href, $text) = m|href="([^"]*)">(.*)|; + ($href, $text) = m|href="([^"]*)"[^<>]*>(.*)|; # Sanitize text $text =~ s/<[^>]*>//g; # remove xml-looking blocks like $text =~ s/’/’/g; # Code for apostrophe