Files
cc65/src
Spiro Trikaliotis 3d0013ab30 Invalid flagged errors if token is missing
A missing factor in an expression causes an expected but missing token
to be skipped, leading to invalid flagged errors in the following line:

l = 3 +
lda     #$00

An error should be output for line 1, but not for line 2. Actually, both
are flagged as errors:

test.s(1): Error: Syntax error
test.s(2): Error: Unexpected trailing garbage characters

This patch (as proposed in issue #1634 by kugelfuhr) fixes this.
2022-02-15 21:46:07 +01:00
..
2021-04-19 16:06:10 +02:00
2021-04-19 16:06:10 +02:00
2021-04-19 16:06:10 +02:00
2021-12-13 17:20:56 +01:00
2019-05-22 11:33:43 +02:00
2021-12-13 17:14:57 +01:00
2021-04-19 16:06:10 +02:00
2022-01-08 16:39:30 -05:00