From: Richard Levitte Date: Wed, 1 Oct 2003 15:04:15 +0000 (+0000) Subject: Remove leading and trailing spaces and tabs X-Git-Tag: OpenSSL_0_9_7d~94 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a510e9e4fcf2f1919069c94c3e20edb4e4e2a392;p=oweals%2Fopenssl.git Remove leading and trailing spaces and tabs --- diff --git a/util/extract-names.pl b/util/extract-names.pl index 9f2ad5ef16..744a8e2324 100644 --- a/util/extract-names.pl +++ b/util/extract-names.pl @@ -10,6 +10,8 @@ while() { if (/ - /) { s/ - .*//; s/,[ \t]+/,/g; + s/^[ \t]+//g; + s/[ \t]+$//g; push @words, split ','; } }