From: Fabian Keil Date: Wed, 25 Nov 2020 12:19:16 +0000 (+0100) Subject: changelog2doc.pl: Don't confuse configure flags with ChangeLog items that need indent... X-Git-Tag: v_3_0_29~3 X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=commitdiff_plain;h=781dbaedaddcc3b106404a2ee6ca9e2e6d082da1;hp=f10289740b4cf700a1ec3b8b838635964f7b9286;ds=inline changelog2doc.pl: Don't confuse configure flags with ChangeLog items that need indentation --- diff --git a/utils/changelog2doc.pl b/utils/changelog2doc.pl index 039db37b..a81f80c6 100755 --- a/utils/changelog2doc.pl +++ b/utils/changelog2doc.pl @@ -39,7 +39,7 @@ sub read_entries() { next unless $section_reached; next if /^\s*$/; - if (/^(\s*)-/) { + if (/^(\s*)- /) { my $indentation = length($1); if ($i > 1 and $entries[$i]{indentation} > $indentation) { $entries[$i]{last_list_item} = 1;