From Richard Earnshaw (rearnsha@armltd.co.uk):

* gasp.c (istrue): Correctly test for string inequality.
This commit is contained in:
Ken Raeburn 1995-05-19 18:43:49 +00:00
parent a5298c2aa2
commit 078d1a5afa
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Fri May 19 16:37:39 1995 Richard Earnshaw (rearnsha@armltd.co.uk)
* gasp.c (istrue): Correctly test for string inequality.
Thu May 18 04:25:11 1995 Ken Raeburn <raeburn@kr-laptop.cygnus.com>
Wed May 10 14:28:16 1995 Richard Earnshaw (rearnsha@armltd.co.uk)

View File

@ -2330,7 +2330,7 @@ istrue (idx, in)
res = 0;
}
else
res = cond == EQ && same;
res = (cond != EQ) ^ same;
}
else
/* This is a numeric expression */