Increase the number of items in a char set from 128 to 256, to cover all
possible bytes (7-bit bytes are so 70s).
This commit is contained in:
parent
e7e29d34ff
commit
5ff983ad9b
|
@ -94,8 +94,8 @@ InitTypes()
|
||||||
/* character type
|
/* character type
|
||||||
*/
|
*/
|
||||||
char_type = standard_type(T_CHAR, 1, (arith) 1);
|
char_type = standard_type(T_CHAR, 1, (arith) 1);
|
||||||
char_type->enm_ncst = 128; /* only 7 bits ASCII characters */
|
char_type->enm_ncst = 256; /* all bytes */
|
||||||
|
|
||||||
/* boolean type
|
/* boolean type
|
||||||
*/
|
*/
|
||||||
bool_type = standard_type(T_ENUMERATION, 1, (arith) 1);
|
bool_type = standard_type(T_ENUMERATION, 1, (arith) 1);
|
||||||
|
|
Loading…
Reference in a new issue