{
last_digit = tok;
}
- else if (ISSPACE (*tok))
+ else if (is_whitespace (*tok))
{
/* skip */
}
char * save_input_pointer;
char * bit = NULL;
- while (ISSPACE (*rl78_lex_start)
+ while (is_whitespace (*rl78_lex_start)
&& rl78_lex_start != rl78_lex_end)
rl78_lex_start ++;
static void
require_end_of_expr (const char *fname)
{
- while (* input_line_pointer == ' '
- || * input_line_pointer == '\t')
+ while (is_whitespace (* input_line_pointer))
input_line_pointer ++;
- if (! * input_line_pointer
- || strchr ("\n\r,", * input_line_pointer)
+ if (is_end_of_stmt (* input_line_pointer)
+ || * input_line_pointer == ','
|| strchr (comment_chars, * input_line_pointer)
|| strchr (line_comment_chars, * input_line_pointer)
|| strchr (line_separator_chars, * input_line_pointer))