Commit 7e7e401e authored by terry%netscape.com's avatar terry%netscape.com

Some installations of perl seem very picky about their regexps.

parent 115627db
...@@ -513,8 +513,8 @@ sub PerformSubsts { ...@@ -513,8 +513,8 @@ sub PerformSubsts {
sub trim { sub trim {
($_) = (@_); ($_) = (@_);
s/^\s*//g; s/^\s+//g;
s/\s*$//g; s/\s+$//g;
return $_; return $_;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment