1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 09:58:01 +00:00

`baltic-default-translation': change default Baltic (CP1257) encoding from

8859-4 to 8859-13 as suggested by Vaidrius Petrauskas, on the grounds that
he has a .lt address and sounds like he knows what he's talking about.

[originally from svn r3485]
This commit is contained in:
Jacob Nevins 2003-10-07 21:31:21 +00:00
parent 72c53fcb75
commit c36ec63d28

View File

@ -1015,7 +1015,7 @@ int decode_codepage(char *cp_name)
* 1254 -> ISO 8859-9 * 1254 -> ISO 8859-9
* 1255 -> ISO 8859-8 * 1255 -> ISO 8859-8
* 1256 -> ISO 8859-6 * 1256 -> ISO 8859-6
* 1257 -> ISO 8859-4 * 1257 -> ISO 8859-13 (changed from 8859-4 on advice of a Lithuanian)
* *
* and for anything else, choose direct-to-font. * and for anything else, choose direct-to-font.
*/ */
@ -1028,7 +1028,7 @@ int decode_codepage(char *cp_name)
case 1254: cp_name = "ISO-8859-9"; break; case 1254: cp_name = "ISO-8859-9"; break;
case 1255: cp_name = "ISO-8859-8"; break; case 1255: cp_name = "ISO-8859-8"; break;
case 1256: cp_name = "ISO-8859-6"; break; case 1256: cp_name = "ISO-8859-6"; break;
case 1257: cp_name = "ISO-8859-4"; break; case 1257: cp_name = "ISO-8859-13"; break;
/* default: leave it blank, which will select -1, direct->font */ /* default: leave it blank, which will select -1, direct->font */
} }
} }