diff --git a/src/ca65/scanner.c b/src/ca65/scanner.c index 0c5d753a3..c75ec6978 100644 --- a/src/ca65/scanner.c +++ b/src/ca65/scanner.c @@ -706,9 +706,9 @@ Again: NextChar (); if (!IsIdStart (C)) { - Error (ERR_PSEUDO_EXPECTED); - /* Try to read an identifier */ - goto Again; + /* Just a dot */ + Tok = TOK_DOT; + return; } /* Read the identifier */