mirror of
https://github.com/cc65/cc65.git
synced 2025-04-04 06:29:41 +00:00
.BLANK was also broken
git-svn-id: svn://svn.cc65.org/cc65/trunk@1392 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
e1d24121e8
commit
89b206f046
@ -279,7 +279,12 @@ void DoConditionals (void)
|
||||
D = AllocIf (".IFBLANK", 1);
|
||||
NextTok ();
|
||||
if (IfCond) {
|
||||
SetIfCond (D, Tok == TOK_SEP);
|
||||
if (Tok == TOK_SEP) {
|
||||
SetIfCond (D, 1);
|
||||
} else {
|
||||
SetIfCond (D, 0);
|
||||
SkipUntilSep ();
|
||||
}
|
||||
}
|
||||
IfCond = GetCurrentIfCond ();
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user