From: minima Date: Tue, 18 Jan 2005 16:47:57 +0000 (+0000) Subject: fix ? all in non english langauge X-Git-Tag: R_1_52~222 X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=695ff3a2ee10b8583e6c660edefbf06c1faac227 fix ? all in non english langauge --- diff --git a/Changes b/Changes index 90a0cab5..970c3222 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,7 @@ 1. Added missing Spanish translation courtesy of Angel EA7WA. 2. Really incorporate latest cty.dat (11Dec04) as opposed to merely thinking I had (and still add 3X0Y as well). +3. fix ? all in non english language 17Jan05======================================================================= 1. Added 3Y0X to Peter Island 3Y in cty.dat. 16Jan05======================================================================= diff --git a/cmd/apropos.pl b/cmd/apropos.pl index 20775dd9..98f799b3 100644 --- a/cmd/apropos.pl +++ b/cmd/apropos.pl @@ -14,9 +14,10 @@ my @out; my $lang = $self->lang; $lang = 'en' if !$lang; -print "$line\n"; +#print "$line\n"; my $in; $line = 'help' unless $line; +$line =~ s/\ball\b/.*/; $line =~ s/\W//g; # remove dubious characters print "$line\n";