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