aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@debian.org>2013-08-15 11:56:04 +0000
committerTatsuya Kinoshita <tats@debian.org>2013-08-15 11:56:04 +0000
commitc5019179caf2cc7427b5101c18994d64c921adef (patch)
treee6302f5ec7c97d9ef3c2cff5785ff1b98e258544
parentUpdate gitlog2changelog to better regexp of email address (diff)
downloadw3m-c5019179caf2cc7427b5101c18994d64c921adef.tar.gz
w3m-c5019179caf2cc7427b5101c18994d64c921adef.zip
Revert "Update gitlog2changelog to better regexp of email address"
This reverts commit e2462c035438e2d38475c20e04b004c33e52e79a.
-rwxr-xr-xdebian/gitlog2changelog2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/gitlog2changelog b/debian/gitlog2changelog
index ae3b144..f6beb65 100755
--- a/debian/gitlog2changelog
+++ b/debian/gitlog2changelog
@@ -37,7 +37,7 @@ my $pre_header = "";
sub print_entry {
my $header = "$date $author";
- $header =~ s/ (<[^@ \t\n]+@[^@ \t\n]+>)[ \t]*$/ $1/;
+ $header =~ s/ </ </;
if ($header ne $pre_header) {
print "$header\n\n";
$pre_header = $header;