ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/table/iso8859_2.h
(Generate patch)

Comparing rxvt-unicode/src/table/iso8859_2.h (file contents):
Revision 1.1 by pcg, Mon Nov 24 17:28:08 2003 UTC vs.
Revision 1.3 by pcg, Mon Mar 15 00:27:13 2004 UTC

19 0xb3, 0xd1, 0xf1, 0x00, 0x00, 0xd2, 0xf2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0xf5, 19 0xb3, 0xd1, 0xf1, 0x00, 0x00, 0xd2, 0xf2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0xf5,
20 0x00, 0x00, 0xc0, 0xe0, 0x00, 0x00, 0xd8, 0xf8, 0xa6, 0xb6, 0x00, 0x00, 0xaa, 0xba, 0xa9, 0xb9, 20 0x00, 0x00, 0xc0, 0xe0, 0x00, 0x00, 0xd8, 0xf8, 0xa6, 0xb6, 0x00, 0x00, 0xaa, 0xba, 0xa9, 0xb9,
21 0xde, 0xfe, 0xab, 0xbb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0xf9, 0xdb, 0xfb, 21 0xde, 0xfe, 0xab, 0xbb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0xf9, 0xdb, 0xfb,
22 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xac, 0xbc, 0xaf, 0xbf, 0xae, 0xbe 22 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xac, 0xbc, 0xaf, 0xbf, 0xae, 0xbe
23}; 23};
24static const uint16_t iso8859_2_t_0[] = {
25 0x00a0, 0x0104, 0x02d8, 0x0141, 0x00a4, 0x013d, 0x015a, 0x00a7, 0x00a8, 0x0160, 0x015e, 0x0164,
26 0x0179, 0x00ad, 0x017d, 0x017b, 0x00b0, 0x0105, 0x02db, 0x0142, 0x00b4, 0x013e, 0x015b, 0x02c7,
27 0x00b8, 0x0161, 0x015f, 0x0165, 0x017a, 0x02dd, 0x017e, 0x017c, 0x0154, 0x00c1, 0x00c2, 0x0102,
28 0x00c4, 0x0139, 0x0106, 0x00c7, 0x010c, 0x00c9, 0x0118, 0x00cb, 0x011a, 0x00cd, 0x00ce, 0x010e,
29 0x0110, 0x0143, 0x0147, 0x00d3, 0x00d4, 0x0150, 0x00d6, 0x00d7, 0x0158, 0x016e, 0x00da, 0x0170,
30 0x00dc, 0x00dd, 0x0162, 0x00df, 0x0155, 0x00e1, 0x00e2, 0x0103, 0x00e4, 0x013a, 0x0107, 0x00e7,
31 0x010d, 0x00e9, 0x0119, 0x00eb, 0x011b, 0x00ed, 0x00ee, 0x010f, 0x0111, 0x0144, 0x0148, 0x00f3,
32 0x00f4, 0x0151, 0x00f6, 0x00f7, 0x0159, 0x016f, 0x00fa, 0x0171, 0x00fc, 0x00fd, 0x0163, 0x02d9
33};
34 24
35struct rxvt_codeset_conv_iso8859_2 : rxvt_codeset_conv { 25struct rxvt_codeset_conv_iso8859_2 : rxvt_codeset_conv {
36 uint32_t from_unicode (uint32_t unicode) const { 26 uint32_t from_unicode (unicode_t unicode) const {
37 if (unicode <= 0x009f) return unicode; 27 if (unicode <= 0x009f) return unicode;
38 if (unicode == 0x02c7) return 0x00b7; 28 if (unicode == 0x02c7) return 0x00b7;
39 if (unicode == 0x02d8) return 0x00a2; 29 if (unicode == 0x02d8) return 0x00a2;
40 if (unicode == 0x02d9) return 0x00ff; 30 if (unicode == 0x02d9) return 0x00ff;
41 if (unicode == 0x02db) return 0x00b2; 31 if (unicode == 0x02db) return 0x00b2;
44 return iso8859_2_f_0[unicode - 0x00a0] == 0 ? NOCHAR : iso8859_2_f_0[unicode - 0x00a0]; 34 return iso8859_2_f_0[unicode - 0x00a0] == 0 ? NOCHAR : iso8859_2_f_0[unicode - 0x00a0];
45 if (0x0102 <= unicode && unicode <= 0x017e) 35 if (0x0102 <= unicode && unicode <= 0x017e)
46 return iso8859_2_f_256[unicode - 0x0102] == 0 ? NOCHAR : iso8859_2_f_256[unicode - 0x0102]; 36 return iso8859_2_f_256[unicode - 0x0102] == 0 ? NOCHAR : iso8859_2_f_256[unicode - 0x0102];
47 return NOCHAR; 37 return NOCHAR;
48 } 38 }
49 uint32_t to_unicode (uint32_t enc) const {
50 if (enc <= 0x009f) return enc;
51 if (0x00a0 <= enc && enc <= 0x00ff)
52 return iso8859_2_t_0[enc - 0x00a0];
53 return NOCHAR;
54 }
55} rxvt_codeset_conv_iso8859_2; 39} rxvt_codeset_conv_iso8859_2;
56 40
57#else 41#else
58 42
59#define rxvt_codeset_conv_iso8859_2 rxvt_codeset_conv_unknown 43#define rxvt_codeset_conv_iso8859_2 rxvt_codeset_conv_unknown

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines