Collapse multiple spaces between words.
There are a few entries with "by__Name" that affects sorting.
This commit is contained in:
parent
62999bb137
commit
35f6392257
|
@ -236,6 +236,10 @@ while(<>) {
|
|||
$msg =~ s/^\"//o;
|
||||
$msg =~ s/\"$//o;
|
||||
|
||||
# Collapse multiple spaces between words. There are a
|
||||
# few entries with "by__Name" that affects sorting.
|
||||
$msg =~ s/(\w) +(\w)/$1 $2/g;
|
||||
|
||||
# Split up into separate paragraphs
|
||||
#
|
||||
$msgs=$msg;
|
||||
|
|
Loading…
Reference in New Issue