mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 17:30:50 +00:00
braces
This commit is contained in:
parent
86e3a640d5
commit
4e6b94de5c
@ -388,8 +388,9 @@ static void IFNextChar (CharSource* S)
|
||||
while (1) {
|
||||
|
||||
int N = fgetc (S->V.File.F);
|
||||
if (N == '\n' && S->SkipN)
|
||||
if (N == '\n' && S->SkipN) {
|
||||
N = fgetc (S->V.File.F);
|
||||
}
|
||||
S->SkipN = 0;
|
||||
|
||||
if (N == EOF) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user