mirror of
https://github.com/cc65/cc65.git
synced 2025-01-03 16:33:19 +00:00
commit
af5d097920
@ -1418,11 +1418,14 @@ CharAgain:
|
||||
/* Line continuation? */
|
||||
if (LineCont) {
|
||||
NextChar ();
|
||||
/* Next char should be a LF, if not, will result in an error later */
|
||||
if (C == '\n') {
|
||||
/* Handle as white space */
|
||||
/* Ignore the '\n' */
|
||||
NextChar ();
|
||||
C = ' ';
|
||||
goto Again;
|
||||
} else {
|
||||
/* Make it clear what the problem is: */
|
||||
Error ("EOL expected.");
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user