projects
/
gentoolkit.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c924eda
)
Add missing semi-colon to fix compilation error
author
fuzzyray
<fuzzyray@gentoo.org>
Fri, 14 Mar 2008 14:26:53 +0000
(14:26 -0000)
committer
fuzzyray
<fuzzyray@gentoo.org>
Fri, 14 Mar 2008 14:26:53 +0000
(14:26 -0000)
svn path=/; revision=482
trunk/src/echangelog/echangelog
patch
|
blob
|
history
diff --git
a/trunk/src/echangelog/echangelog
b/trunk/src/echangelog/echangelog
index c2145902e27a2ad24a89cdd2b02788302d690490..1a4bee7527d49cddcfe8855a6b825cd8071af7ef 100644
(file)
--- a/
trunk/src/echangelog/echangelog
+++ b/
trunk/src/echangelog/echangelog
@@
-391,8
+391,7
@@
die "Empty entry; aborting\n" unless $input =~ /\S/;
# If there are any long lines, then wrap the input at $columns chars
# (leaving 2 chars on left, one char on right, after adding indentation below).
$input =~ s/^\s*(.*?)\s*\z/$1/s; # trim whitespace
-$input = Text::Wrap::fill('', '', $input) if ($input =~ /^.{80}/m);
-$input =~ s/^/ /gm; # add indentation
+$input = Text::Wrap::fill(' ', ' ', $input);
# Prepend the user info to the input
unless ($user = $ENV{'ECHANGELOG_USER'}) {