.BLANK was also broken
git-svn-id: svn://svn.cc65.org/cc65/trunk@1392 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -279,7 +279,12 @@ void DoConditionals (void)
|
|||||||
D = AllocIf (".IFBLANK", 1);
|
D = AllocIf (".IFBLANK", 1);
|
||||||
NextTok ();
|
NextTok ();
|
||||||
if (IfCond) {
|
if (IfCond) {
|
||||||
SetIfCond (D, Tok == TOK_SEP);
|
if (Tok == TOK_SEP) {
|
||||||
|
SetIfCond (D, 1);
|
||||||
|
} else {
|
||||||
|
SetIfCond (D, 0);
|
||||||
|
SkipUntilSep ();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
IfCond = GetCurrentIfCond ();
|
IfCond = GetCurrentIfCond ();
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user