}
Preprocess ();
}
- if (CurC == ' ' || CurC == '\r') {
+ if (IsSpace (CurC)) {
NextChar ();
} else {
return 1;
{
ident token;
- /* We have to skip white space here before shifting tokens, since the
+ /* We have to skip white space here before shifting tokens, since the
* tokens and the current line info is invalid at startup and will get
* initialized by reading the first time from the file. Remember if
* we were at end of input and handle that later.
NextTok.LI = UseLineInfo (GetCurLineInfo ());
/* Now handle end of input. */
- if (GotEOF) {
+ if (GotEOF) {
/* End of file reached */
NextTok.Tok = TOK_CEOF;
return;