From c4110f9cf07c60fd3305f33bc2f62df9f2dd44ef Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Fri, 22 Feb 2002 15:46:37 +0000 Subject: use invalid instead of unknown for errors when checking --- perl-install/lang.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/lang.pm') diff --git a/perl-install/lang.pm b/perl-install/lang.pm index 6019231cd..ba7283e79 100644 --- a/perl-install/lang.pm +++ b/perl-install/lang.pm @@ -808,7 +808,7 @@ sub check { }; my @wanted_charsets = uniq map { lang2charset($_) } list(); - $err->("unknown charset $_ ($_ does not exist in \%charsets)") foreach difference2(\@wanted_charsets, [ keys %charsets ]); + $err->("invalid charset $_ ($_ does not exist in \%charsets)") foreach difference2(\@wanted_charsets, [ keys %charsets ]); $warn->("unused charset $_ (given in \%charsets, but not used in \%languages)") foreach difference2([ keys %charsets ], \@wanted_charsets); $warn->("unused entry $_ in \%xim") foreach difference2([ keys %xim ], [ list() ]); -- cgit v1.2.1