... instead of open-coding it. Convert a variable's type to plain char
then as well, as that's what it's really holding (and how it's used
everywhere else).
exp = get_absolute_expression ();
else
{
- unsigned char attr;
+ char attr;
int readonly_removed = 0;
int load_removed = 0;
while (attr = *++input_line_pointer,
attr != '"'
- && ! is_end_of_line[attr])
+ && ! is_end_of_stmt (attr))
{
if (ISDIGIT (attr))
{
++input_line_pointer;
SKIP_WHITESPACE ();
- if (! is_end_of_line[(unsigned char) *input_line_pointer])
+ if (! is_end_of_stmt (*input_line_pointer))
{
expression (&exp);
if (exp.X_op != O_symbol)