projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1a9e663
)
Remove leading and trailing spaces and tabs
author
Richard Levitte
<levitte@openssl.org>
Wed, 1 Oct 2003 15:04:15 +0000
(15:04 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Wed, 1 Oct 2003 15:04:15 +0000
(15:04 +0000)
util/extract-names.pl
patch
|
blob
|
history
diff --git
a/util/extract-names.pl
b/util/extract-names.pl
index 9f2ad5ef166c7e5c13a4f654dc03db1ac631ef09..744a8e2324e6cc7aaa2641d644ac2cfe1eeeafe8 100644
(file)
--- a/
util/extract-names.pl
+++ b/
util/extract-names.pl
@@
-10,6
+10,8
@@
while(<STDIN>) {
if (/ - /) {
s/ - .*//;
s/,[ \t]+/,/g;
+ s/^[ \t]+//g;
+ s/[ \t]+$//g;
push @words, split ',';
}
}