summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Dominik <carsten.dominik@gmail.com>2010-07-12 11:57:08 +0200
committerCarsten Dominik <carsten.dominik@gmail.com>2010-07-12 11:57:08 +0200
commitb01660fd5176ce3bd5b190856f4887d00f79cad4 (patch)
treee632597124ecf47ff49b3aa5745fa25419412a89
parent94689a04b00f88932e63024ae29bacea4dbcc752 (diff)
downloadorg-mode-b01660fd5176ce3bd5b190856f4887d00f79cad4.tar.gz
Fix make_emacs_changelog to include mentioning of tiny changes
-rwxr-xr-xUTILITIES/make_emacs_changelog4
1 files changed, 2 insertions, 2 deletions
diff --git a/UTILITIES/make_emacs_changelog b/UTILITIES/make_emacs_changelog
index 0a9d995..7771c9e 100755
--- a/UTILITIES/make_emacs_changelog
+++ b/UTILITIES/make_emacs_changelog
@@ -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";
}
}