mirror of
https://github.com/cc65/cc65.git
synced 2024-12-24 11:31:31 +00:00
Fix style
This commit is contained in:
parent
c3d083fe33
commit
10579d0421
@ -1417,16 +1417,16 @@ CharAgain:
|
||||
case '\\':
|
||||
/* Line continuation? */
|
||||
if (LineCont) {
|
||||
NextChar();
|
||||
NextChar ();
|
||||
/* Next char should be a LF, if not, will result in an error later */
|
||||
if (C == '\n') {
|
||||
/* Ignore the '\n' */
|
||||
NextChar();
|
||||
NextChar ();
|
||||
goto Again;
|
||||
}
|
||||
else {
|
||||
/* Make it clear what the problem is: */
|
||||
Error("EOL expected.");
|
||||
Error ("EOL expected.");
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user