Fix make_emacs_changelog to include mentioning of tiny changes

This commit is contained in:
Carsten Dominik 2010-07-12 11:57:08 +02:00
parent 94689a04b0
commit b01660fd51
1 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ $log = <IN>;
@commits = split(/^(?=commit)/m,$log);
for $i (0..$#commits) {
$entry = 0; $tiny = 0;
$entry = ""; $tiny = "";
$commit = $commits[$i];
$author = $1 if $commit=~/^Author: ([^\n]+)/m;
$date = $1 if $commit=~/^Date: ([^\n]+)/m;
@ -44,7 +44,7 @@ for $i (0..$#commits) {
$entry =~ s/(\n[ \t]+\* )/\n$1/g;
# remove the lisp part of the path
$entry =~ s/^([ \t]+\* )lisp\//$1/mg;
print "$syncdate $name $address\n\n$entry\n\n";
print "$syncdate $name $address$tiny\n\n$entry\n\n";
}
}