Subject: Re: New options to wsconscfg(8) and wsfontload(8) for uwscons
To: Bang Jun-Young <junyoung@netbsd.org>
From: Noriyuki Soda <soda@sra.co.jp>
List: tech-userlevel
Date: 04/10/2003 17:31:06
>>>>> On Thu, 10 Apr 2003 01:01:43 +0900,
	Bang Jun-Young <junyoung@netbsd.org> said:
> Patches for wsconscfg(8) and wsfontload(8) are attached in this
> mail. Any comments will be appreciated.

I think the name of encodings should be consistent with names used
by our locale system, if possible.

i.e. Shouldn't the table be the following?

} encodings[] = {
	{"IBM-437", WSDISPLAY_CHARENC_IBM},	/* not supported in locale */
	{"ISO8859-1", WSDISPLAY_CHARENC_ISO},
	{"ISO8859-2", WSDISPLAY_CHARENC_ISO2},
	{"ISO8859-3", WSDISPLAY_CHARENC_ISO3},
	{"ISO8859-4", WSDISPLAY_CHARENC_ISO4},
	{"ISO8859-5", WSDISPLAY_CHARENC_ISO5},
	{"ISO8859-6", WSDISPLAY_CHARENC_ISO6},
	{"ISO8859-7", WSDISPLAY_CHARENC_ISO7},
	{"ISO8859-8", WSDISPLAY_CHARENC_ISO8},
	{"ISO8859-9", WSDISPLAY_CHARENC_ISO9},
	{"ISO8859-10", WSDISPLAY_CHARENC_ISO10},
	{"ISO8859-15", WSDISPLAY_CHARENC_ISO15},
	{"UTF-8", WSDISPLAY_CHARENC_UTF8},
	{"eucCN", WSDISPLAY_CHARENC_EUCCN},
	{"eucJP", WSDISPLAY_CHARENC_EUCJP},
	{"eucKR", WSDISPLAY_CHARENC_EUCKR},
	{"KOI8-R", WSDISPLAY_CHARENC_KOI8},
};
--
soda