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

Comparing rxvt-unicode/src/table/jis0212_1990_0.h (file contents):
Revision 1.3 by pcg, Mon Mar 15 00:27:13 2004 UTC vs.
Revision 1.4 by root, Mon Jul 26 18:01:19 2004 UTC

2120 if (unicode == 0x007e) return 0x2237; 2120 if (unicode == 0x007e) return 0x2237;
2121 if (unicode == 0x2116) return 0x2271; 2121 if (unicode == 0x2116) return 0x2271;
2122 if (unicode == 0x2122) return 0x226f; 2122 if (unicode == 0x2122) return 0x226f;
2123 uint8_t l = unicode; 2123 uint8_t l = unicode;
2124 uint16_t h = unicode >> 8; 2124 uint16_t h = unicode >> 8;
2125 if (0x00 <= h && h <= 0x9f 2125 if (h <= 0x9f
2126 && 0x00 <= l && l <= 0xff 2126 && l <= 0xff
2127 && jis0212_1990_0_f_i[h - 0x00]) 2127 && jis0212_1990_0_f_i[h - 0x00])
2128 return jis0212_1990_0_f_i[h - 0x00][l - 0x00] 2128 return jis0212_1990_0_f_i[h - 0x00][l - 0x00]
2129 ? jis0212_1990_0_f_i[h - 0x00][l - 0x00] 2129 ? jis0212_1990_0_f_i[h - 0x00][l - 0x00]
2130 : NOCHAR; 2130 : NOCHAR;
2131 return NOCHAR; 2131 return NOCHAR;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines