Fixed and documented !if & operator
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6099 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
f0fb5aafea
commit
fbc7cb8fd0
3 changed files with 3 additions and 2 deletions
|
@ -483,6 +483,7 @@ parse_again:
|
|||
case 6:
|
||||
istrue = line.gettoken_float(1) >= line.gettoken_float(3); break;
|
||||
case 7:
|
||||
istrue = (line.gettoken_int(1) & line.gettoken_int(3)) != 0; break;
|
||||
case 8:
|
||||
istrue = line.gettoken_int(1) && line.gettoken_int(3); break;
|
||||
case 9:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue