1
0
mirror of https://github.com/cc65/cc65.git synced 2026-03-12 14:42:08 +00:00
This commit is contained in:
Brad Smith
2023-05-03 12:19:05 -04:00
committed by GitHub
parent 86e3a640d5
commit 4e6b94de5c

View File

@@ -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) {