aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfuzzyray <fuzzyray@gentoo.org>2008-03-14 14:26:53 +0000
committerfuzzyray <fuzzyray@gentoo.org>2008-03-14 14:26:53 +0000
commit8bda63cda08e4f32a91c2fb27b7b7942c6d03d2e (patch)
tree7f8f87cc6f997828a9c0b474e21f6b64760d22d3
parentFix prepending '=' to slotted atoms (Bug #213328) (diff)
downloadgentoolkit-8bda63cda08e4f32a91c2fb27b7b7942c6d03d2e.tar.gz
gentoolkit-8bda63cda08e4f32a91c2fb27b7b7942c6d03d2e.tar.bz2
gentoolkit-8bda63cda08e4f32a91c2fb27b7b7942c6d03d2e.zip
Add missing semi-colon to fix compilation error
svn path=/; revision=482
-rw-r--r--trunk/src/echangelog/echangelog3
1 files changed, 1 insertions, 2 deletions
diff --git a/trunk/src/echangelog/echangelog b/trunk/src/echangelog/echangelog
index c214590..1a4bee7 100644
--- 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'}) {