From 781dbaedaddcc3b106404a2ee6ca9e2e6d082da1 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Wed, 25 Nov 2020 13:19:16 +0100 Subject: [PATCH] changelog2doc.pl: Don't confuse configure flags with ChangeLog items that need indentation --- utils/changelog2doc.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2