changelog2doc.pl: Don't confuse configure flags with ChangeLog items that need indent...
authorFabian Keil <fk@fabiankeil.de>
Wed, 25 Nov 2020 12:19:16 +0000 (13:19 +0100)
committerFabian Keil <fk@fabiankeil.de>
Thu, 26 Nov 2020 11:34:26 +0000 (12:34 +0100)
utils/changelog2doc.pl

index 039db37..a81f80c 100755 (executable)
@@ -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;