mirror of
https://github.com/cc65/cc65.git
synced 2025-02-21 05:29:16 +00:00
Fixed skipped lines consist of a leading # followed by any non-directive PP-token sequence.
This commit is contained in:
parent
be26b0631b
commit
8289c94e69
@ -1296,7 +1296,9 @@ void Preprocess (void)
|
||||
continue;
|
||||
}
|
||||
if (!IsSym (Directive)) {
|
||||
PPError ("Preprocessor directive expected");
|
||||
if (!Skip) {
|
||||
PPError ("Preprocessor directive expected");
|
||||
}
|
||||
ClearLine ();
|
||||
} else {
|
||||
switch (FindPPToken (Directive)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user