1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

Added Shift-JIS charset.

This commit is contained in:
Witold Filipczyk 2010-07-24 10:43:42 +02:00 committed by Witold Filipczyk
parent 958cc8dbbc
commit 7c9e858723

View File

@ -4894,6 +4894,14 @@ unsigned char *const aliases_big5 [] = {
NULL
};
/*** Shift JIS ***/
unsigned char *const aliases_shift_jis [] = {
"shift_jis",
"shift-jis",
NULL
};
/*** NULL ***/
@ -4959,7 +4967,8 @@ const struct codepage_desc codepages [] = {
{"VISCII", aliases_viscii, highhalf_viscii, table_viscii, 0},
{"Unicode UTF-8", aliases_utf8, highhalf_utf8, table_utf8, 0},
{"Big5", aliases_big5, highhalf_NULL, table_NULL, 1},
{"Shift-JIS", aliases_shift_jis, highhalf_NULL, table_NULL, 1},
{NULL, NULL, NULL, 0}
};
#define N_CODEPAGES 36
#define N_CODEPAGES 37