From 695ff3a2ee10b8583e6c660edefbf06c1faac227 Mon Sep 17 00:00:00 2001 From: minima Date: Tue, 18 Jan 2005 16:47:57 +0000 Subject: [PATCH] fix ? all in non english langauge --- Changes | 1 + cmd/apropos.pl | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) 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"; -- 2.34.1