namstart = input_line_pointer;
while ( (c = *input_line_pointer) != ','
- && !is_end_of_line[(unsigned char) c])
+ && !is_end_of_stmt (c))
input_line_pointer++;
{
SKIP_WHITESPACE ();
p = input_line_pointer;
while ((c = *input_line_pointer) != ','
- && !is_end_of_line[(unsigned char) c])
+ && !is_end_of_stmt (c))
input_line_pointer++;
len = input_line_pointer - p;
p = input_line_pointer;
while ((c = *input_line_pointer) != '+'
&& c != ','
- && !is_end_of_line[(unsigned char) c])
+ && !is_end_of_stmt (c))
input_line_pointer++;
len = input_line_pointer - p;
{
input_line_pointer++;
SKIP_WHITESPACE ();
- if (is_end_of_line[(unsigned char) *input_line_pointer])
+ if (is_end_of_stmt (*input_line_pointer))
c = '\n';
}
}