mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 04:30:10 +00:00
Fixed multi line macro bug
git-svn-id: svn://svn.cc65.org/cc65/trunk@772 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
fe2cd767b2
commit
6a988b4859
@ -178,7 +178,7 @@ static int SkipWhite (void)
|
|||||||
}
|
}
|
||||||
Preprocess ();
|
Preprocess ();
|
||||||
}
|
}
|
||||||
if (CurC == ' ' || CurC == '\r') {
|
if (IsSpace (CurC)) {
|
||||||
NextChar ();
|
NextChar ();
|
||||||
} else {
|
} else {
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user