1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-03 06:29:36 +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:
cuz 2002-09-14 21:05:12 +00:00
parent e1d24121e8
commit 89b206f046

View File

@ -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;