aboutsummaryrefslogtreecommitdiffstats
path: root/debian/gitlog2changelog
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@debian.org>2013-08-12 13:15:19 +0000
committerTatsuya Kinoshita <tats@debian.org>2013-08-12 13:15:19 +0000
commitf76214805bf56f8a21d3e7d3f75db4a54b6af33e (patch)
treee6302f5ec7c97d9ef3c2cff5785ff1b98e258544 /debian/gitlog2changelog
parentUpdate gitlog2changelog for well handling of short comment (diff)
downloadw3m-f76214805bf56f8a21d3e7d3f75db4a54b6af33e.tar.gz
w3m-f76214805bf56f8a21d3e7d3f75db4a54b6af33e.zip
Update gitlog2changelog
Diffstat (limited to 'debian/gitlog2changelog')
-rwxr-xr-xdebian/gitlog2changelog2
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/gitlog2changelog b/debian/gitlog2changelog
index 598c7d2..f6beb65 100755
--- a/debian/gitlog2changelog
+++ b/debian/gitlog2changelog
@@ -61,7 +61,7 @@ sub print_entry {
if ($comment =~ /^([^\n]+)/) {
$short_comment = $1;
}
- if ($short_comment =~ /:[ \t]|[:,\)][ \t]*$/ ||
+ if ($short_comment =~ /:[ \t]|[:,\)\]][ \t]*$/ ||
$files_line_len + length($short_comment) > 78) {
$files_lines =~ s/, $/:\n\t/;
} else {