diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2013-11-11 14:34:38 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2013-11-11 14:34:38 +0000 |
commit | ef0f5ad763ba97d89de80df56eaab40b12e738bc (patch) | |
tree | 8185b82dd403fb3b5daee4514a65d6568d41ae61 | |
parent | New patch 270_refresh-url.patch to accept single quoted URL (diff) | |
download | w3m-ef0f5ad763ba97d89de80df56eaab40b12e738bc.tar.gz w3m-ef0f5ad763ba97d89de80df56eaab40b12e738bc.zip |
Update gitlog2changelog to fix paren handling
-rwxr-xr-x | debian/gitlog2changelog | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/gitlog2changelog b/debian/gitlog2changelog index 7dd590f..4017632 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 { |