Replace newlines with a space

This commit is contained in:
Andrew Bauer 2015-05-09 12:13:38 -05:00
parent c7c0622673
commit c7a50a7cbc
1 changed files with 2 additions and 2 deletions

View File

@ -173,8 +173,8 @@ our %types =
);
sub qqq { ## Un-pad paragraph of text.
local $_=shift;
s{\n?^\s*}{}mg;
local $_ = shift;
s{\n?^\s*}{ }mg;
return $_;
}