mirror of
https://github.com/cc65/cc65.git
synced 2025-08-11 11:25:08 +00:00
Fix style
This commit is contained in:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user