diff options
author | Francois Pons <fpons@mandriva.com> | 2001-04-12 11:35:46 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-04-12 11:35:46 +0000 |
commit | cc3321b90b2ee25deec842e1177d57bd92a4de87 (patch) | |
tree | e0fc2d99828d831a48c2bed503a46df465b8802f /perl-install/common.pm | |
parent | 4fc46b7ce637145bafac5682a06d915776fbecb4 (diff) | |
download | drakx-cc3321b90b2ee25deec842e1177d57bd92a4de87.tar drakx-cc3321b90b2ee25deec842e1177d57bd92a4de87.tar.gz drakx-cc3321b90b2ee25deec842e1177d57bd92a4de87.tar.bz2 drakx-cc3321b90b2ee25deec842e1177d57bd92a4de87.tar.xz drakx-cc3321b90b2ee25deec842e1177d57bd92a4de87.zip |
improved bestMatchSentence2.
Diffstat (limited to 'perl-install/common.pm')
-rw-r--r-- | perl-install/common.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/common.pm b/perl-install/common.pm index ab5c9419d..ab08ad4a1 100644 --- a/perl-install/common.pm +++ b/perl-install/common.pm @@ -568,6 +568,9 @@ sub bestMatchSentence2 { foreach (@_) { my $count = 0; foreach my $e (@s) { + $count+= length ($e) if /^$e$/; + $count+= length ($e) if /^$e$/i; + $count+= length ($e) if /$e/; $count+= length ($e) if /$e/i; } $best = $count, $bestSentence = $_ if $count > $best; |