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:
a0cac0f
)
Change spaces to symbols in names.
author
Richard Levitte
<levitte@openssl.org>
Thu, 25 Mar 2004 19:52:36 +0000
(19:52 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Thu, 25 Mar 2004 19:52:36 +0000
(19:52 +0000)
PR: 856
util/extract-names.pl
patch
|
blob
|
history
diff --git
a/util/extract-names.pl
b/util/extract-names.pl
index 744a8e2324e6cc7aaa2641d644ac2cfe1eeeafe8..35bd6ed84326f16ca6ffbdd7e99c8fa1b6a7cf1d 100644
(file)
--- a/
util/extract-names.pl
+++ b/
util/extract-names.pl
@@
-9,9
+9,11
@@
while(<STDIN>) {
} elsif ($name) {
if (/ - /) {
s/ - .*//;
- s/,[ \t]+/,/g;
- s/^[ \t]+//g;
- s/[ \t]+$//g;
+ s/,\s+/,/g;
+ s/\s+,/,/g;
+ s/^\s+//g;
+ s/\s+$//g;
+ s/\s/_/g;
push @words, split ',';
}
}